dismiss static method
Implementation
static void dismiss(String dialogId) {
final OverlayEntryWrapper? entryWrapper = _overlays[dialogId];
if (entryWrapper != null) {
entryWrapper.overlayEntry.remove();
entryWrapper.isVisable.dispose();
_overlays.remove(dialogId);
}
}