notifyError method

  1. @protected
void notifyError(
  1. String message
)

Call all the registered listeners.

Implementation

@protected
void notifyError(String message) {
  for (final c in _callbacks) {
    c(message);
  }
}