ToastificationWrapper constructor

const ToastificationWrapper({
  1. Key? key,
  2. required Widget child,
  3. ToastificationConfig? config,
})

Implementation

const ToastificationWrapper({
  super.key,
  required this.child,
  this.config,
});