FDiscreteSliderController constructor

FDiscreteSliderController({
  1. required FSliderSelection selection,
  2. FSliderInteraction allowedInteraction = FSliderInteraction.tapAndSlideThumb,
  3. bool tooltips = true,
  4. bool minExtendable = false,
})

Creates a FDiscreteSliderController for selecting a single value.

Implementation

FDiscreteSliderController({
  required super.selection,
  super.allowedInteraction,
  super.tooltips = true,
  super.minExtendable,
});