lineWidth property

double lineWidth

Implementation

double get lineWidth => _lineWidth;
void lineWidth=(double? value)

Implementation

set lineWidth(double? value) {
  if (value == null) return;
  addAction((Canvas canvas, Size size) {
    _lineWidth = value;
  });
}