NewFijkSlider constructor

const NewFijkSlider({
  1. Key? key,
  2. required double value,
  3. required ValueChanged<double> onChanged,
  4. double cacheValue = 0.0,
  5. ValueChanged<double>? onChangeStart,
  6. required ValueChanged<double> onChangeEnd,
  7. double min = 0.0,
  8. double max = 1.0,
  9. NewFijkSliderColors colors = const NewFijkSliderColors(),
})

Implementation

const NewFijkSlider({
  Key? key,
  required this.value,
  required this.onChanged,
  this.cacheValue = 0.0,
  this.onChangeStart,
  required this.onChangeEnd,
  this.min = 0.0,
  this.max = 1.0,
  this.colors = const NewFijkSliderColors(),
});