ConferenceSession constructor

ConferenceSession(
  1. ConferenceClient client,
  2. JanusSignaler _signaler,
  3. int conferenceType, {
  4. bool startScreenSharing = false,
  5. DesktopCapturerSource? desktopCapturerSource,
  6. bool useIOSBroadcasting = false,
  7. bool requestAudioForScreenSharing = false,
  8. String? selectedAudioInputDevice,
  9. String? selectedVideoInputDevice,
})

Implementation

ConferenceSession(
  super.client,
  this._signaler,
  int conferenceType, {
  super.startScreenSharing,
  super.desktopCapturerSource,
  super.useIOSBroadcasting,
  super.requestAudioForScreenSharing,
  super.selectedAudioInputDevice,
  super.selectedVideoInputDevice,
}) {
  sessionDescription = CubeConferenceSessionDescription(conferenceType);
}