copyWith method
JiraStatus
copyWith({
- String? description,
- String? id,
- String? name,
- StatusScope? scope,
- JiraStatusStatusCategory? statusCategory,
- List<
ProjectIssueTypes> ? usages, - List<
WorkflowUsages> ? workflowUsages,
Implementation
JiraStatus copyWith(
{String? description,
String? id,
String? name,
StatusScope? scope,
JiraStatusStatusCategory? statusCategory,
List<ProjectIssueTypes>? usages,
List<WorkflowUsages>? workflowUsages}) {
return JiraStatus(
description: description ?? this.description,
id: id ?? this.id,
name: name ?? this.name,
scope: scope ?? this.scope,
statusCategory: statusCategory ?? this.statusCategory,
usages: usages ?? this.usages,
workflowUsages: workflowUsages ?? this.workflowUsages,
);
}