RhombusSlider constructor

const RhombusSlider({
  1. Key? key,
  2. required double min,
  3. required double max,
  4. required bool showLable,
  5. required int divisions,
  6. required bool customThumb,
  7. required Color activeTrackColor,
  8. required Color inactiveTrackColor,
  9. required ValueChanged<double> onChanged,
})

Implementation

const RhombusSlider({
  Key? key,
  required this.min,
  required this.max,
  required this.showLable,
  required this.divisions,
  required this.customThumb,
  required this.activeTrackColor,
  required this.inactiveTrackColor,
  required this.onChanged,
}) : super(key: key);