UBulletGauge constructor

const UBulletGauge({
  1. required double value,
  2. Key? key,
  3. double min = 0,
  4. double max = 100,
  5. double? target,
  6. List<UGaugeBand> bands = const <UGaugeBand>[],
  7. double width = 300,
  8. double height = 48,
  9. Color? measureColor,
  10. UGaugeStyle style = const UGaugeStyle(),
})

Implementation

const UBulletGauge({
  required this.value,
  super.key,
  this.min = 0,
  this.max = 100,
  this.target,
  this.bands = const <UGaugeBand>[],
  this.width = 300,
  this.height = 48,
  this.measureColor,
  this.style = const UGaugeStyle(),
});