OverlayFullscreen constructor

const OverlayFullscreen(
  1. {Key? key,
  2. required Widget overlayChild,
  3. required Widget child,
  4. bool initialShow = false,
  5. bool maintainState = false,
  6. bool opaque = false}
)

OverlayFullscreen constructor is used to handle the overlay widget that overlays the entire screen.

Implementation

const OverlayFullscreen({
  Key? key,
  required this.overlayChild,
  required this.child,
  this.initialShow = false,
  this.maintainState = false,
  this.opaque = false,
})  : _overlayKey = key,
      super(key: null);