Images constructor

Images({
  1. required ImageData fixedHeight,
  2. required ImageData fixedHeightDownsampled,
  3. required ImageData fixedHeightStill,
  4. required ImageData fixedWidth,
  5. required ImageData fixedWidthDownsampled,
  6. required ImageData fixedWidthStill,
  7. required ImageData original,
})

Returns a new Images instance.

Implementation

Images({
  required this.fixedHeight,
  required this.fixedHeightDownsampled,
  required this.fixedHeightStill,
  required this.fixedWidth,
  required this.fixedWidthDownsampled,
  required this.fixedWidthStill,
  required this.original,
});