showErrorToast static method

void showErrorToast(
  1. String message
)

Implementation

static void showErrorToast(String message) {
  Get.snackbar(
    'ERROR'.tr,
    message,
    icon: const Icon(Icons.error, color: Colors.white),
    backgroundColor: Colors.red,
    colorText: Colors.white,
    snackPosition: SnackPosition.BOTTOM,
  );
}