2.0.0
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);