FMultiSelectController<T> constructor
FMultiSelectController<T> ({
- required TickerProvider vsync,
- int min = 0,
- int? max,
- Set<
T> value = const {}, - Duration popoverAnimationDuration = const Duration(milliseconds: 100),
Creates a FMultiSelectController.
Implementation
FMultiSelectController({
required TickerProvider vsync,
super.min,
super.max,
super.value,
Duration popoverAnimationDuration = const Duration(milliseconds: 100),
}) : popover = FPopoverController(vsync: vsync, animationDuration: popoverAnimationDuration);