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