backgroundColor property

Color? backgroundColor

Implementation

Color? get backgroundColor => _backgroundColor;
void backgroundColor=(Color? newValue)

Implementation

set backgroundColor(Color? newValue) {
  updateProperty('backgroundColor', newValue: newValue);
  _backgroundColor = newValue;
}