GalleryItem constructor

GalleryItem({
  1. String? id,
  2. required String link,
  3. required String name,
  4. required int? size,
  5. int? width,
  6. int? height,
  7. String? checksum,
  8. ThumbHash? thumbhash,
  9. bool isVideo = false,
  10. FutureOr<void> onError()?,
})

Implementation

GalleryItem({
  this.id,
  required this.link,
  required this.name,
  required this.size,
  this.width,
  this.height,
  this.checksum,
  this.thumbhash,
  this.isVideo = false,
  this.onError,
});