FSelectController<T> constructor

FSelectController<T>({
  1. required TickerProvider vsync,
  2. T? value,
  3. bool toggleable = false,
  4. 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);