HMSlider constructor

const HMSlider({
  1. Key? key,
  2. bool disabled = false,
  3. bool hidden = false,
  4. List<HMSliderMark>? marks,
  5. HMOrientation? orientation,
  6. required int value,
  7. double? min,
  8. double? max,
  9. Color? color,
  10. HMRadius? radius,
  11. HMSliderSize? size,
  12. required void onChange(
    1. dynamic
    ),
})

Implementation

const HMSlider({
  super.key,
  this.disabled = false,
  this.hidden = false,
  this.marks,
  this.orientation,
  required this.value,
  this.min,
  this.max,
  this.color,
  this.radius,
  this.size,
  required this.onChange,
});