Project.fromJson constructor

Project.fromJson(
  1. Map<String, dynamic> json
)

Implementation

Project.fromJson(Map<String, dynamic> json) {
  id = json["id"];
  thirdId = json["thirdId"];
  clientId = json["clientId"];
  name = json["name"];
  area = json["area"];
  city = json["city"];
  createTime = json["createTime"];
  modifiedTime = json["modifiedTime"];
  status = json["status"];
  mark = json["mark"];
  thirdAreaId = json["thirdAreaId"];
  thirdCityId = json["thirdCityId"];
  constructionStatusType = json["constructionStatusType"];
}