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