PopAnimation constructor

const PopAnimation({
  1. Key? key,
  2. Animation<double>? sizeAnim,
  3. Animation<double>? opacityAnim,
  4. required Widget child,
  5. required Listenable animation,
})

Implementation

const PopAnimation({
  Key? key,
  this.sizeAnim,
  this.opacityAnim,
  required this.child,
  required this.animation,
}) : super(key: key);