FSliderManagedControl constructor
const
FSliderManagedControl({
- FSliderController? controller,
- FSliderValue? initial,
- FSliderInteraction? interaction,
- ValueChanged<
FSliderValue> ? onChange,
Creates a FSliderManagedControl.
Implementation
const FSliderManagedControl({this.controller, this.initial, this.interaction, this.onChange})
: assert(
controller == null || initial == null,
'Cannot provide both controller and initial. Pass initial value to the controller instead.',
),
assert(
controller == null || interaction == null,
'Cannot provide both controller and interaction. Pass interaction to the controller instead.',
),
super._();