setShape property
set
setShape
(PointerShape? value)
Sets the shape for RenderLinearGaugeShapePointer.
Implementation
set setShape(PointerShape? value) {
if (value == _shape) {
return;
}
_shape = value;
markNeedsPaint();
}