copyWith method

WorkflowScope copyWith({
  1. ProjectId? project,
  2. WorkflowScopeType? type,
})

Implementation

WorkflowScope copyWith({ProjectId? project, WorkflowScopeType? type}) {
  return WorkflowScope(
    project: project ?? this.project,
    type: type ?? this.type,
  );
}