HMSlider constructor
const
HMSlider({
- Key? key,
- bool disabled = false,
- List<
HMSliderMark> ? marks, - HMOrientation? orientation,
- required int value,
- double? min,
- double? max,
- Color? color,
- HMRadius? radius,
- HMSliderSize? size,
- required void onChange(
- 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,
});