BaseSlider constructor

const BaseSlider({
  1. Key? key,
  2. required double value,
  3. required double min,
  4. required double max,
  5. Color? activeColor,
  6. Color? inactiveColor,
  7. int? divisions,
  8. String? label,
  9. double? trackHeight,
  10. ValueChanged<double>? onChanged,
  11. ValueChanged<double>? onChangeEnd,
})

Implementation

const BaseSlider(
    {super.key,
    required this.value,
    required this.min,
    required this.max,
    this.activeColor,
    this.inactiveColor,
    this.divisions,
    this.label,
    this.trackHeight,
    this.onChanged,
    this.onChangeEnd});