RadialGauge constructor
const
RadialGauge({
- Key? key,
- required RadialTrack track,
- List<
RadialValueBar> ? valueBar, - double xCenterCoordinate = 0.5,
- double yCenterCoordinate = 0.5,
- double radiusFactor = 1,
- List<
RadialShapePointer> ? shapePointer = const [], - List<
NeedlePointer> ? needlePointer = const [], - List<
RadialWidgetPointer> ? widgetPointer = const [],
Creates a Radial Gauge Widget to display the values in a Radial Scale. The widget can be customized using the properties available in RadialGauge.
RadialGauge(
track: [
RadialTrack(
start: 0,
end: 100,
),
],
),
Implementation
const RadialGauge({
Key? key,
required this.track,
this.valueBar,
this.xCenterCoordinate = 0.5,
this.yCenterCoordinate = 0.5,
this.radiusFactor = 1,
this.shapePointer = const [],
this.needlePointer = const [],
this.widgetPointer = const [],
// List<RadialTrack>? track,
}) : super(key: key);