addError method

void addError(
  1. String message
)

Adds the provided message to the notifications stream as ErrorNotification.

Should (and intended to) be used as a notification measure.

Implementation

void addError(String message) {
  Log.debug('addError($message)', '$runtimeType');
  _notifications.add(ErrorNotification(message: message));
}