FadeIn constructor

FadeIn({
  1. dynamic key,
  2. required Widget child,
  3. int duration = 250,
  4. dynamic listener,
  5. dynamic autoPlay = true,
  6. AnimationController? controller,
})

Implementation

FadeIn(
    {key,
    required this.child,
    this.duration = 250,
    this.listener,
    this.autoPlay = true,
    this.controller})
    : super(key: key);