VideoCompressionOptions constructor

const VideoCompressionOptions({
  1. String? outputFormat,
  2. bool keepMetadata = true,
  3. Map<String, dynamic>? customOptions,
  4. String quality = 'medium',
  5. int? maxWidth,
  6. int? maxHeight,
  7. int? bitrate,
  8. String? videoCodec,
  9. String? audioCodec,
  10. double? frameRate,
  11. bool progressive = false,
})

Implementation

const VideoCompressionOptions({
  super.outputFormat,
  super.keepMetadata,
  super.customOptions,
  this.quality = 'medium',
  this.maxWidth,
  this.maxHeight,
  this.bitrate,
  this.videoCodec,
  this.audioCodec,
  this.frameRate,
  this.progressive = false,
});