FadeInAnimation constructor

const FadeInAnimation({
  1. Key? key,
  2. Duration? duration,
  3. Duration? delay,
  4. Curve curve = Curves.ease,
  5. required Widget child,
})

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);