TemperatureRangeSlider constructor

TemperatureRangeSlider(
  1. double sliderValue,
  2. double min,
  3. double max,
  4. void onChangeEnd(
    1. double
    )?, {
  5. Key? key,
})

Implementation

TemperatureRangeSlider(double sliderValue, double min, double max,
    void Function(double)? onChangeEnd,
    {Key? key})
    : super(key: key) {
  this.sliderValue = sliderValue;
  this.min = min;
  this.max = max;
  this.onChangeEnd = onChangeEnd;
}