connect method
Implementation
Future<void> connect([livekit.FastConnectOptions? fastConnectOptions]) async {
final config = _config;
if (config == null) {
throw Exception("The controller has not been configured");
}
await livekitRoom.connect(config.url, config.token, fastConnectOptions: fastConnectOptions);
}