Slider constructor
const
Slider({})
Creates a Slider with the given value and onChanged callback.
Implementation
const Slider({
super.key,
required this.value,
this.min = 0,
this.max = 100,
this.divisions,
required this.onChanged,
this.activeColor,
this.inactiveColor,
this.thumbColor,
this.label,
this.focusNode,
});