FSelectController<T> constructor
FSelectController<T> ({
- required TickerProvider vsync,
- T? value,
- bool toggleable = false,
- Duration popoverAnimationDuration = const Duration(milliseconds: 50),
Creates a FSelectController.
Implementation
FSelectController({
required TickerProvider vsync,
T? value,
this.toggleable = false,
Duration popoverAnimationDuration = const Duration(milliseconds: 50),
}) : popover = FPopoverController(vsync: vsync, animationDuration: popoverAnimationDuration),
super(value);