color property

Color get color

The filled bar color.

Implementation

Color get color => _color;
set color (Color v)

Sets the fill color.

Implementation

set color(Color v) {
  _color = v;
  _invalidateCache();
}