strokeWidth property

double strokeWidth

How wide to make edges drawn when style is set to PaintingStyle.stroke. The width is given in logical pixels measured in the direction orthogonal to the direction of the path.

Defaults to 0.0, which correspond to a hairline width.

Implementation

double get strokeWidth {
  return _data.getFloat32(_kStrokeWidthOffset, _kFakeHostEndian);
}
void strokeWidth=(double value)

Implementation

set strokeWidth(double value) {
  final double encoded = value;
  _data.setFloat32(_kStrokeWidthOffset, encoded, _kFakeHostEndian);
}