setHeight property

set setHeight (double value)

Sets the height for RenderLinearGaugeShapePointer.

Implementation

set setHeight(double value) {
  if (value == _height) {
    return;
  }

  _height = value;
  markNeedsLayout();
}