RtcAudioProfile constructor

RtcAudioProfile({
  1. AudioSampleRate? sampleRate = AudioSampleRate.Rate48K,
  2. AudioChannel? channel = AudioChannel.Mono,
  3. int? encodeBitrate = 64000,
})

Constructs a RtcAudioProfile

Implementation

RtcAudioProfile(
    {this.sampleRate = AudioSampleRate.Rate48K,
    this.channel = AudioChannel.Mono,
    this.encodeBitrate = 64000});