Suite constructor

Suite({
  1. String? id,
  2. String? projectId,
  3. String? blockId,
  4. String? floorId,
  5. String? houseTypeId,
  6. String? block,
  7. String? unit,
  8. String? floor,
  9. String? room,
  10. dynamic aliasName,
  11. String? createTime,
  12. String? modifiedTime,
  13. int? status,
  14. int? mark,
  15. dynamic thirdBlockId,
  16. dynamic thirdUnitId,
  17. dynamic thirdFloorId,
  18. dynamic thirdRoomId,
})

Implementation

Suite(
    {this.id,
    this.projectId,
    this.blockId,
    this.floorId,
    this.houseTypeId,
    this.block,
    this.unit,
    this.floor,
    this.room,
    this.aliasName,
    this.createTime,
    this.modifiedTime,
    this.status,
    this.mark,
    this.thirdBlockId,
    this.thirdUnitId,
    this.thirdFloorId,
    this.thirdRoomId});