GalleryItem.image constructor

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

Constructs a GalleryItem treated as an image.

Implementation

factory GalleryItem.image(
  String link,
  String name, {
  String? id,
  int? size,
  int? width,
  int? height,
  String? checksum,
  ThumbHash? thumbhash,
  FutureOr<void> Function()? onError,
}) => GalleryItem(
  id: id,
  link: link,
  name: name,
  size: size,
  width: width,
  height: height,
  checksum: checksum,
  thumbhash: thumbhash,
  isVideo: false,
  onError: onError,
);