animate method
AnimatedTheme
animate({
- Curve curve = Curves.linear,
- Duration duration = kThemeAnimationDuration,
- VoidCallback? onEnd,
Implementation
AnimatedTheme animate(
{Curve curve = Curves.linear,
Duration duration = kThemeAnimationDuration,
VoidCallback? onEnd}) {
return AnimatedTheme(
key: key,
data: data,
curve: curve,
duration: duration,
onEnd: onEnd,
child: child);
}