event_taxi library
Support for doing something awesome.
More dartdocs go here.
Classes
-
BehaviourEventController<
T> - Event
- This is the base class for each event. You can only send subclasses of this Event through the EventTaxi
-
EventController<
T> -
The
Interface
for the EventController implementations There are two different implementations. - EventTaxi
- Dispatches events to listeners using the Dart Stream API. The EventTaxi enables decoupled applications. It allows objects to interact without requiring to explicitly define listeners and keeping track of them.
- EventTaxiImpl
-
PublishEventController<
T>