ImageInfo constructor

const ImageInfo({
  1. required int width,
  2. required int height,
  3. required bool hasAlpha,
  4. required int bitDepth,
  5. required ImageFormat format,
})

Implementation

const ImageInfo({
  required this.width,
  required this.height,
  required this.hasAlpha,
  required this.bitDepth,
  required this.format,
});