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