UGaugeRange constructor

UGaugeRange({
  1. required double start,
  2. required double end,
  3. required Color color,
  4. double? startWidth,
  5. double? endWidth,
})

Implementation

UGaugeRange({
  required this.start,
  required this.end,
  required this.color,
  this.startWidth,
  this.endWidth,
});