drawColor property

Color drawColor

Retrieves the current draw color.

Implementation

Color get drawColor => _drawColor;
void drawColor=(Color color)

Sets the draw color.

Implementation

set drawColor(Color color) {
  _drawColor = color;
  _updatePaint();
}