NiceGaugeRange constructor

const NiceGaugeRange({
  1. required double start,
  2. required double end,
  3. required Color color,
})

Implementation

const NiceGaugeRange({
  required this.start,
  required this.end,
  required this.color,
});