IssueTypeDetails constructor

IssueTypeDetails({
  1. int? avatarId,
  2. String? description,
  3. String? entityId,
  4. int? hierarchyLevel,
  5. String? iconUrl,
  6. String? id,
  7. String? name,
  8. Scope? scope,
  9. String? self,
  10. bool? subtask,
})

Implementation

IssueTypeDetails(
    {this.avatarId,
    this.description,
    this.entityId,
    this.hierarchyLevel,
    this.iconUrl,
    this.id,
    this.name,
    this.scope,
    this.self,
    bool? subtask})
    : subtask = subtask ?? false;