BaseInfo.fromJson constructor

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

Implementation

BaseInfo.fromJson(Map<String, dynamic> json) {
  type = json["type"];
  stage = json["stage"];
  taskId = json["taskId"];

  fileUrl = json["fileUrl"];
  phaseCode = json["phaseCode"];
  stationId = json["stationId"];
  actualOrder = json["actualOrder"];
  houseTypeId = json["houseTypeId"];
  measureMode = json["measureMode"];
  resultDataUrl = json["resultDataUrl"];
  detectSimilarFailed = json["detect_similar_failed"];
}