connect method

Future<void> connect([
  1. FastConnectOptions? fastConnectOptions
])

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