UProgressRingGauge constructor

const UProgressRingGauge({
  1. required double value,
  2. Key? key,
  3. double min = 0,
  4. double max = 100,
  5. double size = 160,
  6. String? label,
  7. String? valueLabel,
  8. UGaugeStyle style = const UGaugeStyle(),
})

Implementation

const UProgressRingGauge({
  required this.value,
  super.key,
  this.min = 0,
  this.max = 100,
  this.size = 160,
  this.label,
  this.valueLabel,
  this.style = const UGaugeStyle(),
});