RadialShapePointer constructor
const
RadialShapePointer({
- Key? key,
- required double value,
- Color color = Colors.red,
- double height = 10,
- double width = 10,
- ValueChanged<
double> ? onChanged, - bool isInteractive = false,
- PointerShape shape = PointerShape.triangle,
RadialShapePointer is used to render the shape pointer in the RadialGauge.
Currently Only Supports Circle Shape Pointers. More Shapes to be added soon!
Implementation
const RadialShapePointer({
super.key,
required this.value,
this.color = Colors.red,
this.height = 10,
this.width = 10,
this.onChanged,
this.isInteractive = false,
this.shape = PointerShape.triangle,
});