coolFailureSnackBar method

void coolFailureSnackBar(
  1. String msg
)

Shows a failure snack bar with the given message.

Uses the predefined failure color (orange).

Implementation

void coolFailureSnackBar(String msg)
{
  SnackBarUtil.showFailureWithMessenger(this, msg);
}