eventnotifier 1.0.4 eventnotifier: ^1.0.4 copied to clipboard
Broadcasts named events to interested subscribers. When an event occurs, a method (callback) associated with the subscriber is executed.
example/eventnotifier_example.dart
import 'package:eventnotifier/eventnotifier.dart';
void main() {
// See the EventNotifier test static method for an example of use.
EventNotifier.test();
}