NiceGalleryImage constructor

const NiceGalleryImage({
  1. required String url,
  2. String? thumbnail,
  3. String? title,
  4. String? description,
})

Implementation

const NiceGalleryImage({
  required this.url,
  this.thumbnail,
  this.title,
  this.description,
});