strokeWidth property

double get strokeWidth

Implementation

double get strokeWidth => _strokeWidth!;
set strokeWidth (double value)

Implementation

set strokeWidth(double value) {
  if (value == _strokeWidth) {
    return;
  }
  _strokeWidth = value;
  _paintBorderPainter ??= Paint()..style = PaintingStyle.stroke;
  _paintBorderPainter!.strokeWidth = value;
  markNeedsPaint();
}