MUISlider constructor
const
MUISlider({})
Implementation
const MUISlider(
{super.key,
this.height = 5,
this.inactiveColor = const Color(0xffECEFF1),
this.activeColor = Colors.black,
this.thumbColor = Colors.white,
required this.onChanged,
required this.value,
required this.min,
required this.max,
this.onChangeStart,
this.onChangeEnd})
: assert(min <= max),
assert(
value >= min && value <= max,
'Value $value is not between minimum $min and maximum $max',
);