show static method

void show({
  1. String? text,
  2. bool scaffoldIsGoBack = false,
})

Implementation

static void show({String? text, bool scaffoldIsGoBack = false}) {
  assert(Get.isRegistered<OverController>());
  return Get.find<OverController>().showLoading(text: text, scaffoldMustGoBack: scaffoldIsGoBack);
}