copyWith method
WorkflowTransitionRulesUpdateErrorDetails
copyWith({
- Map<
String, dynamic> ? ruleUpdateErrors, - List<
String> ? updateErrors, - WorkflowId? workflowId,
Implementation
WorkflowTransitionRulesUpdateErrorDetails copyWith(
{Map<String, dynamic>? ruleUpdateErrors,
List<String>? updateErrors,
WorkflowId? workflowId}) {
return WorkflowTransitionRulesUpdateErrorDetails(
ruleUpdateErrors: ruleUpdateErrors ?? this.ruleUpdateErrors,
updateErrors: updateErrors ?? this.updateErrors,
workflowId: workflowId ?? this.workflowId,
);
}