color property

Color get color

Implementation

Color get color => paint.color;
set color (Color value)

Implementation

set color(Color value){
  final paint = this.paint;
  if (paint.color == value) return;
  flushBuffer();
  paint.color = value;
}