UArcGauge constructor
const
UArcGauge({
- required double value,
- Key? key,
- double min = 0,
- double max = 100,
- List<
UGaugeBand> bands = const <UGaugeBand>[], - double size = 200,
- String? valueLabel,
- UGaugeStyle style = const UGaugeStyle(showTicks: false, showLabels: false),
Implementation
const UArcGauge({
required this.value,
super.key,
this.min = 0,
this.max = 100,
this.bands = const <UGaugeBand>[],
this.size = 200,
this.valueLabel,
this.style = const UGaugeStyle(showTicks: false, showLabels: false),
});