Suite.fromJson constructor

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

Implementation

Suite.fromJson(Map<String, dynamic> json) {
  id = json["id"];
  projectId = json["projectId"];
  blockId = json["blockId"];
  floorId = json["floorId"];
  houseTypeId = json["houseTypeId"];
  block = json["block"];
  unit = json["unit"];
  floor = json["floor"];
  room = json["room"];
  aliasName = json["aliasName"];
  createTime = json["createTime"];
  modifiedTime = json["modifiedTime"];
  status = json["status"];
  mark = json["mark"];
  thirdBlockId = json["thirdBlockId"];
  thirdUnitId = json["thirdUnitId"];
  thirdFloorId = json["thirdFloorId"];
  thirdRoomId = json["thirdRoomId"];
}