FMultiSelectController<T> constructor

FMultiSelectController<T>({
  1. required TickerProvider vsync,
  2. int min = 0,
  3. int? max,
  4. Set<T> value = const {},
  5. Duration popoverAnimationDuration = const Duration(milliseconds: 100),
})

Implementation

FMultiSelectController({
  required TickerProvider vsync,
  super.min,
  super.max,
  super.value,
  Duration popoverAnimationDuration = const Duration(milliseconds: 100),
}) : popover = FPopoverController(vsync: vsync, animationDuration: popoverAnimationDuration);