hideLoading method

void hideLoading()

Implementation

void hideLoading() {
  if (!_isDisposed && _context.mounted) {
    Navigator.of(_context).pop();
  }
}