hide static method

void hide()

Hide loading overlay

Implementation

static void hide() {
  if (!_isShowing) return;
  _overlayEntry?.remove();
  _overlayEntry = null;
  _isShowing = false;
}