JiraWorkflowStatus constructor

JiraWorkflowStatus({
  1. String? description,
  2. String? id,
  3. String? name,
  4. WorkflowScope? scope,
  5. JiraWorkflowStatusStatusCategory? statusCategory,
  6. String? statusReference,
  7. List<ProjectIssueTypes>? usages,
})

Implementation

JiraWorkflowStatus(
    {this.description,
    this.id,
    this.name,
    this.scope,
    this.statusCategory,
    this.statusReference,
    List<ProjectIssueTypes>? usages})
    : usages = usages ?? [];