setOrientation property

void setOrientation=(GaugeOrientation? value)

Sets the orientation for RenderLinearGaugeWidgetPointer.

Default value is GaugeOrientation.horizontal.

Implementation

set setOrientation(GaugeOrientation? value) {
  if (value == _orientation) {
    return;
  }

  _orientation = value;
  markNeedsLayout();
}