GalleryItem.video constructor

GalleryItem.video(
  1. String link,
  2. String name, {
  3. String? id,
  4. int? size,
  5. String? checksum,
  6. FutureOr<void> onError()?,
})

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,
);