toast method

void toast(
  1. bool success,
  2. String msg
)

Implementation

void toast(bool success, String msg)
{
  success
    ? toastSuccess(msg)
    : toastError(msg);
}