signal & webrtc connections established

This commit is contained in:
David Zhao
2021-07-23 23:56:06 -07:00
parent 26981c1c8c
commit 0bd2679e94
8 changed files with 68 additions and 38 deletions
+9
View File
@@ -0,0 +1,9 @@
import 'room.dart';
class LiveKitClient {
// TODO: take in connect options
static Future<Room> connect(String url, String token) {
var room = Room();
return room.connect(url, token);
}
}