GalleryThumbnail constructor

const GalleryThumbnail({
  1. Key? key,
  2. required GalleryItem galleryItem,
  3. GestureTapCallback? onTap,
})

Implementation

const GalleryThumbnail({
  Key? key,
  required this.galleryItem,
  this.onTap,
}) : super(key: key);