SliderWidget constructor

const SliderWidget({
  1. Key? key,
  2. required RxDouble maxValue,
  3. required RxDouble minValue,
  4. bool isEnabled = true,
  5. required RxDouble currentValue,
  6. required void onChangeEnd(),
  7. SliderInteraction? allowedInteraction,
})

Implementation

const SliderWidget({
  super.key,
  required this.maxValue,
  required this.minValue,
  this.isEnabled = true,
  required this.currentValue,
  required this.onChangeEnd,
  this.allowedInteraction,
});