HMRangeSlider constructor

const HMRangeSlider({
  1. Key? key,
  2. bool disabled = false,
  3. bool hidden = false,
  4. List<HMSliderMark>? marks,
  5. HMOrientation? orientation,
  6. required RangeValues rangeValues,
  7. double rangeMinValue = 0,
  8. double rangeMaxValue = 100,
  9. Color? color,
  10. HMRadius? radius,
  11. HMSliderSize? size,
  12. required void onChange(
    1. List<int>
    ),
})

Implementation

const HMRangeSlider({
  super.key,
  this.disabled = false,
  this.hidden = false,
  this.marks,
  this.orientation,
  required this.rangeValues,
  this.rangeMinValue = 0,
  this.rangeMaxValue = 100,
  this.color,
  this.radius,
  this.size,
  required this.onChange,
});