xSCA method
The child Widget to animate. ScaleAnimation
Implementation
Widget xSCA(
{
/// The duration of the child animation.
final Duration duration,
/// The delay between the beginning of two children's animations.
final Duration delay,
double scale = 0.0}) {
return ScaleAnimation(
delay: delay,
scale: scale,
duration: duration,
child: this,
);
}