close method

void close()

Implementation

void close() {
  try {
    if (_overlayEntry != null) {
      _overlayEntry!.remove();
      _entries.remove(_id);
      _overlayEntry = null;
    }
  } catch (e) {
    Get.printError(info: 'ModLoading: Error closing loading - $e');
  }
}