ThresholdSliderRow constructor

const ThresholdSliderRow({
  1. Key? key,
  2. required String label,
  3. required double value,
  4. required double min,
  5. required double max,
  6. required ValueChanged<double> onChanged,
  7. int? divisions,
  8. bool isInt = false,
  9. double sliderWidthFactor = 1.0,
})

Implementation

const ThresholdSliderRow({
  super.key,
  required this.label,
  required this.value,
  required this.min,
  required this.max,
  required this.onChanged,
  this.divisions,
  this.isInt = false,
  this.sliderWidthFactor = 1.0,
});