AnimatedToastrWrapper constructor

const AnimatedToastrWrapper({
  1. Key? key,
  2. required Widget child,
  3. required Duration closeDuration,
  4. required VoidCallback onClose,
})

Implementation

const AnimatedToastrWrapper({
  super.key,
  required this.child,
  required this.closeDuration,
  required this.onClose,
});