NeumorphicRangeSlider constructor

NeumorphicRangeSlider({
  1. Key? key,
  2. RangeSliderStyle style = const RangeSliderStyle(),
  3. double min = 0,
  4. double max = 10,
  5. double valueLow = 0,
  6. double valueHigh = 10,
  7. double height = 15,
  8. NeumorphicRangeSliderLowListener? onChangedLow,
  9. NeumorphicRangeSliderHighListener? onChangeHigh,
  10. dynamic onPanStarted(
    1. ActiveThumb
    )?,
  11. dynamic onPanEnded(
    1. ActiveThumb
    )?,
  12. double? sliderHeight,
  13. Widget? thumb,
})

Implementation

NeumorphicRangeSlider({
  Key? key,
  this.style = const RangeSliderStyle(),
  this.min = 0,
  this.max = 10,
  this.valueLow = 0,
  this.valueHigh = 10,
  this.height = 15,
  this.onChangedLow,
  this.onChangeHigh,
  this.onPanStarted,
  this.onPanEnded,
  this.sliderHeight,
  this.thumb,
});