setStrokeWidth method

void setStrokeWidth(
  1. double strokeWidth
)

Sets the width of the next line

Implementation

void setStrokeWidth(double strokeWidth) {
  temporaryValue = value.copyWith(
    selectedWidth: strokeWidth,
  );
}