ImageInfo constructor

const ImageInfo({
  1. Key? key,
  2. required Uint8List image,
  3. Size? originalSize,
  4. required Size currentSize,
  5. required String name,
})

Implementation

const ImageInfo({super.key, required this.image, this.originalSize, required this.currentSize, required this.name});