PhotoSize constructor

const PhotoSize({
  1. required String type,
  2. required File photo,
  3. required int width,
  4. required int height,
  5. required List<int> progressiveSizes,
})

Describes an image in JPEG format

Implementation

const PhotoSize({
  required this.type,
  required this.photo,
  required this.width,
  required this.height,
  required this.progressiveSizes,
});