WidgetAnimator constructor

const WidgetAnimator({
  1. Key? key,
  2. WidgetTransitionEffects? incomingEffect,
  3. WidgetTransitionEffects? outgoingEffect,
  4. WidgetRestingEffects? atRestEffect,
  5. Widget? child,
  6. dynamic onIncomingAnimationComplete(
    1. Key?
    )?,
  7. dynamic onOutgoingAnimationComplete(
    1. Key?
    )?,
})

Constructor for the WidgetAnimator

Implementation

const WidgetAnimator(
    {Key? key,
    this.incomingEffect,
    this.outgoingEffect,
    this.atRestEffect,
    this.child,
    this.onIncomingAnimationComplete,
    this.onOutgoingAnimationComplete})
    : super(key: key);