NavigationTransformationController constructor

NavigationTransformationController({
  1. required TickerProvider vsync,
})

Implementation

NavigationTransformationController({required this.vsync}) {
  _animationController = AnimationController(
      vsync: vsync, duration: const Duration(milliseconds: 300));
}