backgroundColor property

Color backgroundColor

Retrieves the current background color.

Implementation

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

Updates the background color.

Implementation

set backgroundColor(Color color) {
  _backgroundColor = color;
  _updatePaint();
}