AnimatedDialogWrapper constructor

const AnimatedDialogWrapper(
  1. {Key? key,
  2. required Widget child,
  3. required Animation<double> animation}
)

Implementation

const AnimatedDialogWrapper({
  super.key,
  required this.child,
  required this.animation,
});