CallSetting constructor

CallSetting({
  1. bool isLowBandwidthMode = false,
  2. bool isAudioMuted = false,
  3. bool echoCancellationEnabled = true,
  4. bool noiseSuppressionEnabled = true,
  5. bool agcEnabled = true,
  6. bool isVideoMuted = false,
  7. bool e2eeEnabled = false,
  8. WebRTCCodec preferedCodec = WebRTCCodec.h264,
  9. VideoQuality videoQuality = VideoQuality.low,
  10. VideoLayout videoLayout = VideoLayout.gridView,
})

Implementation

CallSetting({
  this.isLowBandwidthMode = false,
  this.isAudioMuted = false,
  this.echoCancellationEnabled = true,
  this.noiseSuppressionEnabled = true,
  this.agcEnabled = true,
  this.isVideoMuted = false,
  this.e2eeEnabled = false,
  this.preferedCodec = WebRTCCodec.h264,
  this.videoQuality = VideoQuality.low,
  this.videoLayout = VideoLayout.gridView,
});