You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/stream_feed/README.md
+13-7Lines changed: 13 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,8 @@
1
1
# Official Dart Client for [Stream Activity Feeds](https://getstream.io/activity-feeds/)
2
2
3
-
>The official Dart client for Stream Activity Feeds, a service for building feed applications. This library can be used on any Dart project and on both mobile and web apps with Flutter.
4
-
3
+
> The official Dart client for Stream Activity Feeds
4
+
> a service for building feed applications. This library can be used on any Dart project
5
+
> and on both mobile and web apps with Flutter.
5
6
6
7
**🔗 Quick Links**
7
8
@@ -41,14 +42,19 @@ const apiKey = 'my-API-key';
41
42
const secret = 'my-API-secret';
42
43
43
44
// Instantiate a new client (server side)
44
-
var client = StreamFeedClient.connect(apiKey, secret: secret);
45
+
var client = StreamFeedClient.connect(apiKey, secret: secret, runner: Runner.server);
45
46
46
47
// Optionally supply the app identifier and an options object specifying the data center to use and timeout for requests (15s)
0 commit comments