FadeAnimation constructor

FadeAnimation({
  1. Key? key,
  2. double delay = 0,
  3. required Widget child,
  4. FadeFrom fadeFrom = FadeFrom.center,
  5. double size = 30.0,
})

Implementation

FadeAnimation(
    {super.key,
    this.delay = 0,
    required this.child,
    this.fadeFrom = FadeFrom.center,
    this.size = 30.0});