hideProgressDialog function

dynamic hideProgressDialog()

hide progress dialog method

this method will hide progress dialog Uses _ProgressDialog from progress_dialog package

Implementation

hideProgressDialog() async {
  if (_progressDialog != null) {
    await _progressDialog!.hide();
  }
}