MediaOptions constructor

const MediaOptions({
  1. int imageQuality = 80,
  2. int? maxWidth = 1280,
  3. int? maxHeight = 1280,
  4. String? watermark,
  5. double? watermarkFontSize,
  6. double? watermarkFontSizePercentage = 4.0,
  7. String? watermarkPosition = WatermarkPosition.bottomRight,
  8. Duration? maxDuration = const Duration(seconds: 60),
  9. CropOptions? cropOptions,
})

Implementation

const MediaOptions({
  this.imageQuality = 80,
  this.maxWidth = 1280,
  this.maxHeight = 1280,
  this.watermark,
  this.watermarkFontSize,
  this.watermarkFontSizePercentage = 4.0,
  this.watermarkPosition = WatermarkPosition.bottomRight,
  this.maxDuration = const Duration(seconds: 60),
  this.cropOptions,
});