ProjectImage.fromJson constructor

ProjectImage.fromJson(
  1. dynamic json
)

Implementation

ProjectImage.fromJson(dynamic json) {
  _imageId = json['image_id'];
  _projectGalleryId = json['project_gallery_id'];
  _projectId = json['project_id'];
  _image = json['image'];
  _imageFull = json['image_full'];
  _imageName = json['image_name'];
  _type = json['type'];
  _title = json['title'];
  _createdAt = json['created_at'];
}