GalleryItem.image constructor
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,
);