ImageInfos constructor

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

Implementation

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