AudioInfo constructor

const AudioInfo({
  1. required Duration duration,
  2. required int sampleRate,
  3. required int channels,
  4. required int bitRate,
  5. required String format,
})

Creates an AudioInfo with the given metadata.

Implementation

const AudioInfo({
  required this.duration,
  required this.sampleRate,
  required this.channels,
  required this.bitRate,
  required this.format,
});