v0.6.0
Pre-release
Pre-release
stream_feed
0.5.0
Changelog
- BREAKING: we no longer accept a token in the constructor. This change is inspired by Stream Chat, and allows for use cases like multi account management. It allows to instantiate
StreamFeedClient
at the top of your widget tree for example, and connect the user later.
- client = StreamFeedClient(apiKey, token: frontendToken);
+ client = StreamFeedClient(apiKey);
+
+ await client.setUser(
+ const User(
+ data: {
+ 'name': 'John Doe',
+ 'occupation': 'Software Engineer',
+ 'gender': 'male'
+ },
+ ),
+ frontendToken,
+ );
stream_feed_flutter_core
0.6.0
Changelog
- breaking: bump version of breaking change llc