showErrorSnackbar function

void showErrorSnackbar(
  1. String title,
  2. String? message
)

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,
  );
}