S360fRangeSlider constructor

const S360fRangeSlider({
  1. required RangeValues currentRangeValues,
  2. required double max,
  3. Key? key,
  4. String? label,
  5. int? divisions,
  6. bool isDisable = false,
  7. void onChanged(
    1. RangeValues values
    )?,
})

Implementation

const S360fRangeSlider({
  required this.currentRangeValues,
  required this.max,
  super.key,
  this.label,
  this.divisions,
  this.isDisable = false,
  this.onChanged,
});