AudioFile constructor

AudioFile({
  1. int? length,
  2. int? bitRate,
  3. String? channels,
  4. String? encodingType,
  5. String? format,
  6. int? sampleRate,
  7. bool? isVariableBitRate,
})

Implementation

AudioFile({
  this.length,
  this.bitRate,
  this.channels,
  this.encodingType,
  this.format,
  this.sampleRate,
  this.isVariableBitRate,
});