Project constructor

Project({
  1. String? id,
  2. dynamic thirdId,
  3. String? clientId,
  4. String? name,
  5. String? area,
  6. String? city,
  7. String? createTime,
  8. String? modifiedTime,
  9. int? status,
  10. int? mark,
  11. dynamic thirdAreaId,
  12. dynamic thirdCityId,
  13. int? constructionStatusType,
})

Implementation

Project(
    {this.id,
    this.thirdId,
    this.clientId,
    this.name,
    this.area,
    this.city,
    this.createTime,
    this.modifiedTime,
    this.status,
    this.mark,
    this.thirdAreaId,
    this.thirdCityId,
    this.constructionStatusType});