xFPA method
The child Widget to animate. FlipAnimation
Implementation
Widget xFPA(
{FlipAxis flipAxis = FlipAxis.x,
/// 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 FlipAnimation(
delay: delay,
flipAxis: flipAxis,
duration: duration,
child: this,
);
}