AudioFrame constructor

const AudioFrame({
  1. required int sampleRate,
  2. required int channels,
  3. required Uint8List data,
  4. required AudioFormat format,
})

Implementation

const AudioFrame({
  required this.sampleRate,
  required this.channels,
  required this.data,
  required this.format,
});