ProjectComponent constructor

ProjectComponent({
  1. User? assignee,
  2. ProjectComponentAssigneeType? assigneeType,
  3. String? description,
  4. String? id,
  5. bool? isAssigneeTypeValid,
  6. User? lead,
  7. String? leadAccountId,
  8. String? leadUserName,
  9. String? name,
  10. String? project,
  11. int? projectId,
  12. User? realAssignee,
  13. ProjectComponentRealAssigneeType? realAssigneeType,
  14. String? self,
})

Implementation

ProjectComponent(
    {this.assignee,
    this.assigneeType,
    this.description,
    this.id,
    bool? isAssigneeTypeValid,
    this.lead,
    this.leadAccountId,
    this.leadUserName,
    this.name,
    this.project,
    this.projectId,
    this.realAssignee,
    this.realAssigneeType,
    this.self})
    : isAssigneeTypeValid = isAssigneeTypeValid ?? false;