notifyListeners method

  1. @protected
  2. @mustCallSuper
void notifyListeners(
  1. BlocEventType type
)

Calls all callbacks currently active

Implementation

@protected
@mustCallSuper
void notifyListeners(BlocEventType type) {
  for (var e in _eventListeners) {
    e(type);
  }
}