From 936679cbe2207c074de7540ff30b72468a086247 Mon Sep 17 00:00:00 2001 From: CloudWebRTC Date: Fri, 14 Jul 2023 09:49:20 +0800 Subject: [PATCH] Update lib/src/options.dart --- lib/src/options.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/src/options.dart b/lib/src/options.dart index 133d96d..68ac0b9 100644 --- a/lib/src/options.dart +++ b/lib/src/options.dart @@ -19,6 +19,9 @@ class TrackOption { /// This will enable the local participant to publish tracks on connect, /// instead of having to explicitly publish them. /// Defaults to false for all three tracks: microphone, camera, and screen. +/// You can also create LocalAudio/VideoTrack on your `PreJoin` page +/// (preview camera or select audio device), Automatically publish these +/// tracks after the room is connected. class FastConnectOptions { FastConnectOptions({ this.microphone = const TrackOption(enabled: false),