ImageInfos constructor

const ImageInfos({
  1. required Size rawSize,
  2. required Size renderedSize,
  3. required Size originalRenderedSize,
  4. required Size cropRectSize,
  5. required double pixelRatio,
  6. required bool isRotated,
})

Creates an instance of ImageInfos.

Implementation

const ImageInfos({
  required this.rawSize,
  required this.renderedSize,
  required this.originalRenderedSize,
  required this.cropRectSize,
  required this.pixelRatio,
  required this.isRotated,
});