We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0170c0 commit e24e6beCopy full SHA for e24e6be
livestreaming_tutorial/lib/main.dart
@@ -19,6 +19,13 @@ Future<void> main() async {
19
userToken: 'REPLACE_WITH_TOKEN',
20
);
21
22
+ // For connecting anonymous users
23
+ // StreamVideo(
24
+ // 'REPLACE_WITH_API_KEY',
25
+ // user: User.anonymous(),
26
+ // userToken: 'REPLACE_WITH_TOKEN',
27
+ // );
28
+
29
runApp(
30
const MaterialApp(
31
home: HomeScreen(),
livestreaming_tutorial/lib/view_livestream_screen.dart
@@ -9,7 +9,7 @@ class ViewLivestreamScreen extends StatefulWidget {
9
}
10
11
class _ViewLivestreamScreenState extends State<ViewLivestreamScreen> {
12
- final callId = "REPLACE_WITH_LIVESTREAM_ID";
+ final callId = "REPLACE_WITH_CALL_ID";
13
14
late Call? _livestreamCall;
15
0 commit comments