hide static method

void hide(
  1. OverlayEntry entry
)

Hide the given loading overlay entry if it is still mounted.

Implementation

static void hide(OverlayEntry entry) {
  if (entry.mounted) {
    entry.remove();
  }
}