UThermometerGauge constructor

const UThermometerGauge({
  1. required double value,
  2. Key? key,
  3. double min = 0,
  4. double max = 100,
  5. double width = 110,
  6. double height = 260,
  7. int majorTicks = 5,
  8. Color? fillColor,
  9. String? valueLabel,
  10. UGaugeStyle style = const UGaugeStyle(),
})

Implementation

const UThermometerGauge({
  required this.value,
  super.key,
  this.min = 0,
  this.max = 100,
  this.width = 110,
  this.height = 260,
  this.majorTicks = 5,
  this.fillColor,
  this.valueLabel,
  this.style = const UGaugeStyle(),
});