FadeInAnimation constructor
const
FadeInAnimation({})
Creates a fade animation that fades its child.
The child
argument must not be null.
Implementation
const FadeInAnimation({
Key? key,
this.duration,
this.delay,
this.curve = Curves.ease,
required this.child,
}) : super(key: key);