USemiCircleGauge constructor

const USemiCircleGauge({
  1. required double value,
  2. Key? key,
  3. double min = 0,
  4. double max = 100,
  5. List<UGaugeBand> bands = const <UGaugeBand>[],
  6. double size = 240,
  7. int majorTicks = 5,
  8. bool needle = true,
  9. String? valueLabel,
  10. UGaugeStyle style = const UGaugeStyle(),
})

Implementation

const USemiCircleGauge({
  required this.value,
  super.key,
  this.min = 0,
  this.max = 100,
  this.bands = const <UGaugeBand>[],
  this.size = 240,
  this.majorTicks = 5,
  this.needle = true,
  this.valueLabel,
  this.style = const UGaugeStyle(),
});