RangeSliderPicker constructor

const RangeSliderPicker({
  1. Key? key,
  2. RangeValues? selectedRangeValues,
  3. OnApplyButtonClick? onApplyButtonClick,
  4. int divisions = 1,
  5. int maxValue = 40,
  6. int minValue = 0,
  7. bool? hideHeader = false,
  8. String? headerText = 'Select a range',
  9. String? cancelButtonText = 'CANCEL',
  10. String? acceptButtonText = 'ACCEPT',
})

Implementation

const RangeSliderPicker({
  Key? key,
  this.selectedRangeValues,
  this.onApplyButtonClick,
  this.divisions = 1,
  this.maxValue = 40,
  this.minValue = 0,
  this.hideHeader = false,
  this.headerText = 'Select a range',
  this.cancelButtonText = 'CANCEL',
  this.acceptButtonText = 'ACCEPT',
}) : super(key: key);