NERtcAudioFrameFormat constructor

NERtcAudioFrameFormat({
  1. required int type,
  2. required int channels,
  3. required int sampleRate,
  4. required int bytesPerSample,
  5. required int samplesPerChannel,
})

Implementation

NERtcAudioFrameFormat({
  required this.type,
  required this.channels,
  required this.sampleRate,
  required this.bytesPerSample,
  required this.samplesPerChannel,
});