eventnotifier library
An implementation in Dart of an 'Event Bus' or 'Event Broker'. Broadcasts named events to interested subscribers. When an event occurs, a method (callback) associated with the subscriber is executed.
Classes
- EventNotifier
- Broadcasts named events to interested subscribers. When an event occurs, a method (callback) associated with the subscriber is executed.
Typedefs
-
NotificationCallback(
Map< String, dynamic> args) → void