LinearGauge constructor

const LinearGauge({
  1. required double maxValue,
  2. required double minValue,
  3. required double actualValue,
  4. Key? key,
})

Implementation

const LinearGauge({
  required this.maxValue,
  required this.minValue,
  required this.actualValue,
  Key? key,
}) : super(key: key);