GalleryData constructor

GalleryData({
  1. num? projectGalleryId,
  2. String? projectId,
  3. String? title,
  4. List<String>? titleArray,
  5. String? tagLine,
  6. String? type,
  7. String? description,
  8. String? createdAt,
  9. List<ProjectImage>? image,
})

Implementation

GalleryData({
    num? projectGalleryId,
    String? projectId,
    String? title,
    List<String>? titleArray,
    String? tagLine,
    String? type,
    String? description,
    String? createdAt,
    List<ProjectImage>? image,}){
  _projectGalleryId = projectGalleryId;
  _projectId = projectId;
  _title = title;
  _titleArray = titleArray;
  _tagLine = tagLine;
  _type = type;
  _description = description;
  _createdAt = createdAt;
  _image = image;
}