I am working on styling a component, and I need to react to something where a color isn't set or is set to null. I get a compiler error when I check for
if (!(_myColor==null)){
//do something
}else{
//do another thing
}
I can't be the first person to need to do this, but I don't see
anything in the docs about it.
Thanks;
Amy

