marcojakob / dart-event-bus

An Event Bus using Dart Streams for decoupling applications
MIT License
755 stars 82 forks source link

can event be String? #25

Closed fantasy525 closed 5 years ago

fantasy525 commented 5 years ago

now .event is a class ,Can string events be supported? like this:

eventBus.on('login')
marcojakob commented 5 years ago

You could try this:

eventBus.on<String>().listen((event) {
  print(event);
});