CreateSizedRoute constructor

const CreateSizedRoute({
  1. Key? key,
  2. required Animation<double> animation,
  3. required Widget child,
  4. Curve curve = Curves.elasticInOut,
})

Implementation

const CreateSizedRoute({
  super.key,
  required this.animation,
  required this.child,
  this.curve = Curves.elasticInOut,
});