hide static method
Hides the currently visible global loading panel, if any.
Implementation
static void hide(BuildContext context) {
if (_isShowing) {
final navigator = Navigator.of(context, rootNavigator: true);
if (navigator.canPop()) {
navigator.pop();
}
_isShowing = false;
}
}