stopLoading static method
dynamic
stopLoading()
Stop the currently open loading dialog. This method doesn't return anything.
Implementation
static stopLoading() {
Navigator.of(Get.overlayContext!)
.pop(); // Close the dialog using the Navigator
}