NiceBarGauge constructor

const NiceBarGauge({
  1. Key? key,
  2. required List<NiceBarGaugeItem> items,
  3. double min = 0,
  4. double max = 100,
  5. double size = 200,
  6. String? title,
  7. String formatValue(
    1. double
    )?,
})

Implementation

const NiceBarGauge({
  super.key,
  required this.items,
  this.min = 0,
  this.max = 100,
  this.size = 200,
  this.title,
  this.formatValue,
});