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