NiceCircularGauge constructor
const
NiceCircularGauge({ - Key? key,
- required double value,
- double min = 0,
- double max = 100,
- double size = 200,
- double startAngle = 225,
- double sweepAngle = 270,
- Color? color,
- Color? trackColor,
- String? label,
- String formatValue(
- double
)?,
- List<NiceGaugeRange>? ranges,
})
Implementation
const NiceCircularGauge({
super.key,
required this.value,
this.min = 0,
this.max = 100,
this.size = 200,
this.startAngle = 225,
this.sweepAngle = 270,
this.color,
this.trackColor,
this.label,
this.formatValue,
this.ranges,
});