ComponentWithIssueCount constructor

ComponentWithIssueCount({
  1. User? assignee,
  2. ComponentWithIssueCountAssigneeType? assigneeType,
  3. String? description,
  4. String? id,
  5. bool? isAssigneeTypeValid,
  6. int? issueCount,
  7. User? lead,
  8. String? name,
  9. String? project,
  10. int? projectId,
  11. User? realAssignee,
  12. ComponentWithIssueCountRealAssigneeType? realAssigneeType,
  13. String? self,
})

Implementation

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