OverlayEntry constructor

OverlayEntry({
  1. required Widget builder(
    1. BuildContext context
    ),
  2. bool opaque = false,
  3. bool maintainState = false,
})

Implementation

OverlayEntry({
  required this.builder,
  this.opaque = false,
  this.maintainState = false,
});