RoomModel constructor

RoomModel({
  1. String? id,
  2. String? userId,
  3. String? projectId,
  4. String? suiteId,
  5. int? phaseCode,
  6. String? measureMode,
  7. String? name,
  8. int? taskStatus,
  9. String? createTime,
  10. String? modifiedTime,
  11. int? status,
  12. int? mark,
  13. String? firstComputeTime,
  14. String? lastComputeTime,
  15. dynamic applicationId,
  16. String? houseTypeName,
  17. String? houseTypeImg,
  18. List<StationData>? stationDataList,
  19. Suite? suite,
  20. Project? project,
  21. dynamic resultData,
})

Implementation

RoomModel(
    {this.id,
    this.userId,
    this.projectId,
    this.suiteId,
    this.phaseCode,
    this.measureMode,
    this.name,
    this.taskStatus,
    this.createTime,
    this.modifiedTime,
    this.status,
    this.mark,
    this.firstComputeTime,
    this.lastComputeTime,
    this.applicationId,
    this.houseTypeName,
    this.houseTypeImg,
    this.stationDataList,
    this.suite,
    this.project,
    this.resultData});