showLoadingView static method

dynamic showLoadingView()

Implementation

static showLoadingView() {
  if (Get.isDialogOpen == false) {
    Get.dialog(
        const Center(
          child: CustomProgressDialog(),
        ),
        barrierDismissible: false,
        barrierColor: Colors.black38);
  }
}