AudioExternalFrame constructor

AudioExternalFrame({
  1. Uint8List? data,
  2. int? sampleRate,
  3. int? numberOfChannels,
  4. int? samplesPerChannel,
  5. int? syncTimestamp,
})

Implementation

AudioExternalFrame({
  this.data,
  this.sampleRate,
  this.numberOfChannels,
  this.samplesPerChannel,
  this.syncTimestamp,
});