hide static method
void
hide()
Hide loading overlay
Implementation
static void hide() {
if (!_isShowing) return;
_overlayEntry?.remove();
_overlayEntry = null;
_isShowing = false;
}
Hide loading overlay
static void hide() {
if (!_isShowing) return;
_overlayEntry?.remove();
_overlayEntry = null;
_isShowing = false;
}