Gallery constructor

const Gallery({
  1. required String id,
  2. required String title,
  3. String? date,
  4. int? rating100,
  5. int? imageCount,
  6. String? details,
})

Implementation

const Gallery({
  required this.id,
  required this.title,
  this.date,
  this.rating100,
  this.imageCount,
  this.details,
});