registerAll abstract method

Stream<Event> registerAll([
  1. bool includeLastEvent = false
])

Listens for events of all subtypes of Event.

The method is called like this: eventBus.registerAll();

The returning Stream contains every event of this EventTaxi. if includeLastEvent is true the stream will emit the last event with If there is no last event it won't to anything.

Implementation

Stream<Event> registerAll([bool includeLastEvent = false]);