AudioCompressionOptions constructor

const AudioCompressionOptions({
  1. int quality = 80,
  2. String? outputFormat,
  3. bool keepMetadata = true,
  4. Map<String, dynamic>? customOptions,
  5. int? sampleRate,
  6. int? channels,
  7. String? audioCodec,
  8. int? bitrate,
})

Implementation

const AudioCompressionOptions({
  this.quality = 80,
  this.outputFormat,
  this.keepMetadata = true,
  this.customOptions,
  this.sampleRate,
  this.channels,
  this.audioCodec,
  this.bitrate,
});