RangeSlider constructor

const RangeSlider({
  1. required double minValue,
  2. required double maxValue,
  3. double min = 0,
  4. double max = 100,
  5. String? label,
  6. SliderStyle? style,
  7. void onChanged(
    1. double,
    2. double
    )?,
  8. Key? key,
})

Implementation

const RangeSlider({
  required this.minValue,
  required this.maxValue,
  this.min = 0,
  this.max = 100,
  this.label,
  this.style,
  this.onChanged,
  super.key,
});