copyWith method

WorkflowTransitionRulesUpdateErrorDetails copyWith({
  1. Map<String, dynamic>? ruleUpdateErrors,
  2. List<String>? updateErrors,
  3. 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,
  );
}