FPopoverController constructor

FPopoverController({
  1. required TickerProvider vsync,
  2. dynamic duration = const Duration(milliseconds: 100),
})

Creates a FPopoverController with the given vsync and animation duration.

Implementation

FPopoverController({required TickerProvider vsync, duration = const Duration(milliseconds: 100)}) {
  _animation = AnimationController(vsync: vsync, duration: duration);
  _fade = _fadeTween.animate(_animation);
  _scale = _scaleTween.animate(_animation);
}