FullScreenOverlayEntry constructor

FullScreenOverlayEntry({
  1. double? top,
  2. double? bottom,
  3. double? left,
  4. double? right,
  5. required WidgetBuilder builder,
  6. bool tapToDismiss = true,
  7. VoidCallback? dismissCallback,
})

Implementation

FullScreenOverlayEntry({
  this.top,
  this.bottom,
  this.left,
  this.right,
  required this.builder,
  this.tapToDismiss = true,
  this.dismissCallback,
});