USpeedometerGauge constructor

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

Implementation

const USpeedometerGauge({
  required this.value,
  super.key,
  this.min = 0,
  this.max = 100,
  this.bands = const <UGaugeBand>[],
  this.size = 220,
  this.majorTicks = 6,
  this.valueLabel,
  this.style = const UGaugeStyle(),
});