ProcessedImage constructor

const ProcessedImage({
  1. required Uint8List originalBytes,
  2. required Uint8List processedBytes,
  3. required String base64String,
  4. required int width,
  5. required int height,
  6. required String format,
  7. String? originalFormat,
})

Implementation

const ProcessedImage({
  required this.originalBytes,
  required this.processedBytes,
  required this.base64String,
  required this.width,
  required this.height,
  required this.format,
  this.originalFormat,
});