strokeStyle property

Color get strokeStyle

Implementation

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

Implementation

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