thickness property

double thickness

Returns the current thickness that is used for drawing.

Implementation

double get thickness => _thickness;
void thickness=(double t)

Sets the draw thickness..

Implementation

set thickness(double t) {
  _thickness = t;
  _updatePaint();
}