FadedScaleAnimation constructor

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

Implementation

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