show static method

void show({
  1. String? text,
})

Implementation

static void show({String? text}) {
  assert(Get.isRegistered<OverController>());
  return Get.find<OverController>().showProgress(text: text);
}