PhotoCachedSize constructor

const PhotoCachedSize({
  1. required String type,
  2. required int w,
  3. required int h,
  4. required Uint8List bytes,
})

Photo Cached Size constructor.

Implementation

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