missing files

This commit is contained in:
David Zhao
2021-08-30 15:32:12 -07:00
parent d011bc7d3d
commit ef00eda3b7
3 changed files with 81 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
/// Options when joining a room.
/// {@category Room}
class JoinOptions {
final bool? autoSubscribe;
const JoinOptions({this.autoSubscribe});
}