builder property
Implementation
@override
get builder =>
(context, animation, secondaryAnimation, child) => ScaleTransition(
scale: CurvedAnimation(parent: animation, curve: Curves.easeOutBack),
child: FadeTransition(opacity: animation, child: child),
);