ImageScaleJob constructor

ImageScaleJob({
  1. String wandKey = "wand",
  2. int maxDimension = 1024,
  3. int quality = 100,
  4. String format = "webp",
  5. CompressionType compressionType = CompressionType.WebPCompression,
  6. PixelInterpolateMethod interpolateMethod = PixelInterpolateMethod.BilinearInterpolatePixel,
  7. required File output,
})

Implementation

ImageScaleJob({
  super.wandKey = "wand",
  this.maxDimension = 1024,
  this.quality = 100,
  this.format = "webp",
  this.compressionType = CompressionType.WebPCompression,
  this.interpolateMethod = PixelInterpolateMethod.BilinearInterpolatePixel,
  required this.output,
});