Image constructor

Image({
  1. num? imageId,
  2. num? projectGalleryId,
  3. num? projectId,
  4. String? image,
  5. String? imageFull,
  6. String? imageName,
  7. String? type,
  8. String? title,
  9. String? createdAt,
})

Implementation

Image({
    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;
}