onAllEvent method

StreamSubscription<Event> onAllEvent(
  1. Function callback
)

Implementation

StreamSubscription<Event> onAllEvent(Function callback) {
  return this.onEvent.listen((Event e) {
      callback(e);
  });
}