RadialShapePointer constructor

const RadialShapePointer({
  1. Key? key,
  2. required double value,
  3. Color color = Colors.red,
  4. double height = 10,
  5. double width = 10,
  6. ValueChanged<double>? onChanged,
  7. bool isInteractive = false,
  8. 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,
});