MediaOptions constructor

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

Implementation

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