copyWith method
JiraWorkflowStatus
copyWith({
- String? description,
- String? id,
- String? name,
- WorkflowScope? scope,
- JiraWorkflowStatusStatusCategory? statusCategory,
- String? statusReference,
- List<
ProjectIssueTypes> ? usages,
Implementation
JiraWorkflowStatus copyWith(
{String? description,
String? id,
String? name,
WorkflowScope? scope,
JiraWorkflowStatusStatusCategory? statusCategory,
String? statusReference,
List<ProjectIssueTypes>? usages}) {
return JiraWorkflowStatus(
description: description ?? this.description,
id: id ?? this.id,
name: name ?? this.name,
scope: scope ?? this.scope,
statusCategory: statusCategory ?? this.statusCategory,
statusReference: statusReference ?? this.statusReference,
usages: usages ?? this.usages,
);
}