setOrientation property
set
setOrientation
(GaugeOrientation? value)
Sets the orientation for RenderLinearGaugeShapePointer.
Default value is GaugeOrientation.horizontal.
Implementation
set setOrientation(GaugeOrientation? value) {
if (value == _orientation) {
return;
}
_orientation = value;
markNeedsLayout();
}