showErrorSnackBar method

void showErrorSnackBar({
  1. required String message,
})

Implementation

void showErrorSnackBar({required String message}) {
  showSnackBar(
    message: message,
    backgroundColor: Colors.red,
    color: Colors.white,
  );
}