copyWith method
WorkflowCreateResponse
copyWith({
- List<
JiraWorkflowStatus> ? statuses, - List<
JiraWorkflow> ? workflows,
Implementation
WorkflowCreateResponse copyWith(
{List<JiraWorkflowStatus>? statuses, List<JiraWorkflow>? workflows}) {
return WorkflowCreateResponse(
statuses: statuses ?? this.statuses,
workflows: workflows ?? this.workflows,
);
}