showOverlay property

bool get showOverlay

Show the overlay? Test this in the parent widget calling this.

Implementation

bool get showOverlay => state.showOverlay;
set showOverlay (bool? show)

Set the State object's boolean flag.

Implementation

set showOverlay(bool? show) {
  if (show != null) {
    state.showOverlay = show;
  }
}