ExtractedImage constructor

const ExtractedImage({
  1. required int xref,
  2. required String ext,
  3. required int colorspace,
  4. required int width,
  5. required int height,
  6. required int bpc,
  7. required Uint8List image,
})

Implementation

const ExtractedImage({
  required this.xref,
  required this.ext,
  required this.colorspace,
  required this.width,
  required this.height,
  required this.bpc,
  required this.image,
});