hideLoader method

void hideLoader()

Hides the loader dialog if it is currently displayed.

Implementation

void hideLoader() {
  if (!_loading) return;
  dialogCtx.popRoute();
  _loading = false;
}