hide method
Hide the spinner loader, if shown.
Implementation
hide({bool scheduler = false}) {
if (_loadingDialog != null) {
_loadingDialog?.hide(scheduler: scheduler);
_loadingDialog = null;
}
}
Hide the spinner loader, if shown.
hide({bool scheduler = false}) {
if (_loadingDialog != null) {
_loadingDialog?.hide(scheduler: scheduler);
_loadingDialog = null;
}
}