FileProcessingOptions constructor

const FileProcessingOptions({
  1. bool enableThumbnailGeneration = false,
  2. bool enableMetadataExtraction = false,
  3. bool enableVirusScanning = false,
  4. bool enableContentAnalysis = false,
  5. bool enableAutoRotation = false,
  6. bool enableWatermarking = false,
  7. CompressionType compressionType = CompressionType.none,
  8. int? thumbnailSize,
  9. String? watermarkText,
  10. Map<String, dynamic>? customProcessing,
})

Implementation

const FileProcessingOptions({
  this.enableThumbnailGeneration = false,
  this.enableMetadataExtraction = false,
  this.enableVirusScanning = false,
  this.enableContentAnalysis = false,
  this.enableAutoRotation = false,
  this.enableWatermarking = false,
  this.compressionType = CompressionType.none,
  this.thumbnailSize,
  this.watermarkText,
  this.customProcessing,
});