showWarningSnackbar function
Implementation
void showWarningSnackbar(String title, String? message) {
Get.snackbar(
title,
message ?? '',
backgroundColor: Colors.white,
colorText: Colors.yellow.shade800,
duration: Duration(seconds: 6),
borderColor: Colors.yellow.shade800,
borderWidth: 1,
);
}