hide method

void hide ()

Implementation

void hide() {
  if (_isShowing) {
    _isShowing = false;
    Navigator.of(_context).pop();
    debugPrint('ProgressDialog dismissed');
  }
}