FadedScaleAnimation constructor

FadedScaleAnimation({
  1. Key? key,
  2. required Widget child,
  3. int durationInMilliseconds = 400,
  4. Curve curve = Curves.decelerate,
})

Implementation

FadedScaleAnimation(
    {Key? key,
    required this.child,
    this.durationInMilliseconds = 400,
    this.curve = Curves.decelerate})
    : super(key: key);