ElZoomTransition constructor

const ElZoomTransition({
  1. Key? key,
  2. required AnimationController controller,
  3. Curve curve = Curves.decelerate,
  4. Curve? reverseCurve,
  5. Curve opacityCurve = Curves.easeIn,
  6. ElZoomTransitionType type = ElZoomTransitionType.top,
  7. required Widget child,
})

Implementation

const ElZoomTransition({
  super.key,
  required this.controller,
  this.curve = Curves.decelerate,
  this.reverseCurve,
  this.opacityCurve = Curves.easeIn,
  this.type = ElZoomTransitionType.top,
  required this.child,
});