borderWidth property

double borderWidth

Implementation

double get borderWidth => _borderWidth;
void borderWidth=(double value)

Implementation

set borderWidth(double value) {
  if (_borderWidth != value) {
    _borderWidth = value;
    markNeedsSegmentsPaint();
  }
}