strokeStyle property

Color strokeStyle

Implementation

Color get strokeStyle => _strokeStyle;
void strokeStyle=(Color? newValue)

Implementation

set strokeStyle(Color? newValue) {
  if (newValue == null) return;
  addAction((Canvas canvas, Size size) {
    _strokeStyle = newValue;
  });
}