backgroundColor property

Color backgroundColor

Implementation

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

Implementation

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