ULinearGauge constructor

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

Implementation

const ULinearGauge({
  required this.value,
  super.key,
  this.min = 0,
  this.max = 100,
  this.bands = const <UGaugeBand>[],
  this.width = 300,
  this.height = 70,
  this.majorTicks = 5,
  this.valueLabel,
  this.style = const UGaugeStyle(),
});