setWidth property

void setWidth=(double value)

Sets the width for RenderLinearGaugeShapePointer.

Implementation

set setWidth(double value) {
  if (value == _width) {
    return;
  }

  _width = value;
  markNeedsLayout();
}