SliderWidget constructor

const SliderWidget({
  1. Key? key,
  2. required String prefixText,
  3. required int value,
  4. required ValueChanged<int> onChanged,
  5. int max = 100,
  6. int min = 0,
  7. int? divisions,
})

Implementation

const SliderWidget(
    {super.key,
    required this.prefixText,
    required this.value,
    required this.onChanged,
    this.max = 100,
    this.min = 0,
    this.divisions});