Files
client-sdk-flutter/lib/src/livekit.dart
T
2021-07-23 23:56:06 -07:00

10 lines
202 B
Dart

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);
}
}