ImageProcess constructor

ImageProcess(
  1. Uint8List imageBytes, {
  2. required int encodingQuality,
  3. required OutputImageFormat outputImageFormat,
  4. String? workerPath,
})

Implementation

ImageProcess(
  this.imageBytes, {
  required this.encodingQuality,
  required this.outputImageFormat,
  String? workerPath, // Used on web only
});