RtcAudioMixingConfig constructor

RtcAudioMixingConfig({
  1. bool? enablePublish = true,
  2. int? publishVolume = 100,
  3. bool? enableLoopback = true,
  4. int? loopbackVolume = 100,
  5. int? cycle = 1,
  6. bool? replaceMicrophone = false,
})

Constructs a RtcAudioMixingConfig

Implementation

RtcAudioMixingConfig(
    {this.enablePublish = true,
    this.publishVolume = 100,
    this.enableLoopback = true,
    this.loopbackVolume = 100,
    this.cycle = 1,
    this.replaceMicrophone = false});