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