setStrokeMultiplier method

void setStrokeMultiplier(
  1. int value
)

Sets the stroke multiplier to the specified value and notifies listeners.

Implementation

void setStrokeMultiplier(int value) {
  _strokeMultiplier = value;
  notifyListeners();
}