OverlaySupport constructor

const OverlaySupport({
  1. Key? key,
  2. required Widget child,
  3. ToastThemeData? toastTheme,
  4. bool global = true,
})

Implementation

const OverlaySupport({
  Key? key,
  required this.child,
  this.toastTheme,
  this.global = true,
}) : super(key: key);