CreateScaleRotateRoute constructor

const CreateScaleRotateRoute({
  1. Key? key,
  2. required Animation<double> animation,
  3. required Animation<double> secondaryAnimation,
  4. required Widget child,
  5. Curve curve = Curves.elasticInOut,
  6. Curve secondaryCurve = Curves.fastOutSlowIn,
})

Implementation

const CreateScaleRotateRoute({
  super.key,
  required this.animation,
  required this.secondaryAnimation,
  required this.child,
  this.curve = Curves.elasticInOut,
  this.secondaryCurve = Curves.fastOutSlowIn,
});