NiceGalleryItem constructor

const NiceGalleryItem({
  1. required ImageProvider<Object> image,
  2. ImageProvider<Object>? thumbnail,
  3. String? title,
  4. String? description,
})

Implementation

const NiceGalleryItem({
  required this.image,
  this.thumbnail,
  this.title,
  this.description,
});