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