closeLoading method

dynamic closeLoading()

Implementation

closeLoading() {
  if (isShowLoading && context != null) {
    isShowLoading = false;
    Navigator.pop(context!);
    // Get.back();
  }
}