setScreenShareEnabled method
Shortcut for publishing a TrackSource.screenShareVideo
Implementation
Future<LocalTrackPublication?> setScreenShareEnabled(bool enabled,
{bool? captureScreenAudio, ScreenShareCaptureOptions? screenShareCaptureOptions}) async {
screenShareCaptureOptions ??= room.roomOptions.defaultScreenShareCaptureOptions;
return setSourceEnabled(TrackSource.screenShareVideo, enabled,
captureScreenAudio: captureScreenAudio, screenShareCaptureOptions: screenShareCaptureOptions);
}