Skip to content

v1.0.0

Compare
Choose a tag to compare
@marcojakob marcojakob released this 06 Jul 11:38
· 24 commits to master since this release
  • Migrate to Dart 2.
  • BREAKING CHANGE: The on method now has a generic type. The type must be passed as a type argument instead of a method parameter. Change myEventBus.on(MyEventType) to myEventBus.on<MyEventType>().
  • BREAKING CHANGE: Every EventBus is now hierarchical so that listeners will also receive events of subtypes of the specified type. This is exactly the way that HierarchicalEventBus worked. So HierarchicalEventBus has been removed. Use the normal EventBus instead.