hide static method

Future<void> hide()

Implementation

static Future<void> hide() async {
  try {
    if (_currentHud != null) {
      _currentHud!.navigator!.pop();
    }
    _currentHud = null;
  } catch (e) {
    _currentHud = null;
  }
}