color property

Color? color

Implementation

Color? get color {
  return _color;
}
void color=(Color? c)

Implementation

set color(Color? c) {
  _color = c;
  if (c != null) this.paint.color = c;
}