RangeSlider constructor

const RangeSlider({
  1. required double minValue,
  2. required double maxValue,
  3. double min = 0,
  4. double max = 100,
  5. String? label,
  6. String trackColor = '#27272A',
  7. String activeColor = '#10B981',
})

Implementation

const RangeSlider({
  required this.minValue,
  required this.maxValue,
  this.min = 0,
  this.max = 100,
  this.label,
  this.trackColor = '#27272A',
  this.activeColor = '#10B981',
});