GalleryItem.video constructor
Constructs a GalleryItem treated as a video.
Implementation
factory GalleryItem.video(
String link,
String name, {
String? id,
int? size,
String? checksum,
FutureOr<void> Function()? onError,
}) => GalleryItem(
id: id,
link: link,
name: name,
size: size,
checksum: checksum,
isVideo: true,
onError: onError,
);