ProjectImage constructor
ProjectImage({})
Implementation
ProjectImage({
num? imageId,
num? projectGalleryId,
num? projectId,
String? image,
String? imageFull,
String? imageName,
String? type,
String? title,
String? createdAt,}){
_imageId = imageId;
_projectGalleryId = projectGalleryId;
_projectId = projectId;
_image = image;
_imageFull = imageFull;
_imageName = imageName;
_type = type;
_title = title;
_createdAt = createdAt;
}