RCCallAudioConfig.create constructor

RCCallAudioConfig.create({
  1. bool enableMicrophone = true,
  2. bool enableStereo = true,
  3. int audioSource = 7,
  4. int audioBitrate = 32,
  5. int audioSampleRate = 48000,
  6. RCCallAudioCodecType type = RCCallAudioCodecType.opus,
})

Implementation

RCCallAudioConfig.create({
  this.enableMicrophone = true,
  this.enableStereo = true,
  this.audioSource = 7,
  this.audioBitrate = 32,
  this.audioSampleRate = 48000,
  this.type = RCCallAudioCodecType.opus,
});