showError static method

void showError(
  1. BuildContext context,
  2. String message
)

Show an error snackbar

Implementation

static void showError(BuildContext context, String message) {
  _show(context, message, Colors.red, Icons.error);
}