showSuccessToast static method
Implementation
static void showSuccessToast(String message) {
Get.snackbar(
'SUCCESS'.tr,
message,
icon: const Icon(Icons.check, color: Colors.white),
backgroundColor: Colors.green,
colorText: Colors.white,
snackPosition: SnackPosition.BOTTOM,
);
}