coolSuccessSnackBar method

void coolSuccessSnackBar(
  1. String msg
)

Shows a success snack bar with the given message.

Uses the predefined success color (green).

Implementation

void coolSuccessSnackBar(String msg)
{
  SnackBarUtil.showSuccessWithMessenger(this, msg);
}