copyWith method

Implementation

WorkflowTransitionRulesUpdate copyWith(
    {List<WorkflowTransitionRules>? workflows}) {
  return WorkflowTransitionRulesUpdate(
    workflows: workflows ?? this.workflows,
  );
}