WGlobalOverlay constructor

const WGlobalOverlay({
  1. Key? key,
  2. double? left,
  3. double? right,
  4. double? top,
  5. double? bottom,
  6. Widget? background,
  7. required Widget child,
})

Implementation

const WGlobalOverlay({
  super.key,
  this.left,
  this.right,
  this.top,
  this.bottom,
  this.background,
  required this.child,
});