ImageImage constructor
ImageImage(
- Image _image, {
- double? dpi,
- PdfImageOrientation? orientation,
Implementation
ImageImage(this._image, {double? dpi, PdfImageOrientation? orientation})
: super(
_image.width,
_image.height,
orientation ?? PdfImageOrientation.topLeft,
dpi,
);