copyWith method
WorkflowCreateRequest
copyWith({
- WorkflowScope? scope,
- List<
WorkflowStatusUpdate> ? statuses, - List<
WorkflowCreate> ? workflows,
Implementation
WorkflowCreateRequest copyWith(
{WorkflowScope? scope,
List<WorkflowStatusUpdate>? statuses,
List<WorkflowCreate>? workflows}) {
return WorkflowCreateRequest(
scope: scope ?? this.scope,
statuses: statuses ?? this.statuses,
workflows: workflows ?? this.workflows,
);
}