CupertinoSliderData constructor

CupertinoSliderData({
  1. Key? widgetKey,
  2. double? value,
  3. void onChanged(
    1. double
    )?,
  4. void onChangeStart(
    1. double
    )?,
  5. void onChangeEnd(
    1. double
    )?,
  6. Color? activeColor,
  7. int? divisions,
  8. double? min,
  9. double? max,
  10. Color? thumbColor,
})

Implementation

CupertinoSliderData({
  super.widgetKey,
  super.value,
  super.onChanged,
  super.onChangeStart,
  super.onChangeEnd,
  super.activeColor,
  super.divisions,
  super.min,
  super.max,
  super.thumbColor,
});