backgroundColor property

Color? backgroundColor

Implementation

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

Implementation

set backgroundColor(Color? value) {
  if (_backgroundColor != value) {
    _backgroundColor = value;
    markNeedsPaint();
  }
}