show static method

void show({
  1. AlertType type = AlertType.info,
  2. String? title,
  3. required String message,
  4. bool autoClose = true,
})

Implementation

static void show({AlertType type = AlertType.info, String? title, required String message, bool autoClose = true}) {
  assert(Get.isRegistered<OverController>());
  return Get.find<OverController>().addAlert(OverAlertModel(type: type, message: message, autoClose: autoClose, title: title));
}