Skip to content

2.0.0

Compare
Choose a tag to compare
@rmconsole2-wf rmconsole2-wf released this 14 Dec 20:26

This major release includes the following changes:

Breaking Changes

  • #49 Store now has a default constructor and a named .withTransformer() constructor. This allows extending classes to mixin other classes which was previously not possible.

Migration

If you are using the transformer parameter in the Store() constructor, use the named Store.withTransformer() constructor instead:

StreamTransformer transformer = ...;
- Store store = new Store(transformer: transformer);
+ Store store = new Store.withTransformer(transformer);