MediaConfig constructor

const MediaConfig({
  1. bool audio = false,
  2. bool video = false,
  3. bool screenshare = false,
  4. AudioConfig? audioConfig,
  5. VideoConfig? videoConfig,
  6. ScreenShareConfig? screenshareConfig,
})

Implementation

const MediaConfig({
  this.audio = false,
  this.video = false,
  this.screenshare = false,
  this.audioConfig,
  this.videoConfig,
  this.screenshareConfig,
});