USegmentedGauge constructor

const USegmentedGauge({
  1. required double value,
  2. Key? key,
  3. double min = 0,
  4. double max = 100,
  5. int segments = 10,
  6. double size = 200,
  7. Color? fillColor,
  8. String? valueLabel,
  9. UGaugeStyle style = const UGaugeStyle(),
})

Implementation

const USegmentedGauge({
  required this.value,
  super.key,
  this.min = 0,
  this.max = 100,
  this.segments = 10,
  this.size = 200,
  this.fillColor,
  this.valueLabel,
  this.style = const UGaugeStyle(),
});