PhotoSize constructor

const PhotoSize({
  1. required String type,
  2. required int w,
  3. required int h,
  4. required int size,
})

Photo Size constructor.

Implementation

const PhotoSize({
  required this.type,
  required this.w,
  required this.h,
  required this.size,
}) : super._();