ImageSet constructor

ImageSet({
  1. required String name,
  2. required String path,
  3. required List<Image> images,
})

Implementation

ImageSet({
  required this.name,
  required this.path,
  required this.images,
});