FadeIn constructor
FadeIn({
- dynamic key,
- required Widget child,
- int duration = 250,
- dynamic listener,
- dynamic autoPlay = true,
- AnimationController? controller,
Implementation
FadeIn(
{key,
required this.child,
this.duration = 250,
this.listener,
this.autoPlay = true,
this.controller})
: super(key: key);