copyWith method
Implementation
WorkflowsWithTransitionRulesDetails copyWith(
{List<WorkflowTransitionRulesDetails>? workflows}) {
return WorkflowsWithTransitionRulesDetails(
workflows: workflows ?? this.workflows,
);
}
WorkflowsWithTransitionRulesDetails copyWith(
{List<WorkflowTransitionRulesDetails>? workflows}) {
return WorkflowsWithTransitionRulesDetails(
workflows: workflows ?? this.workflows,
);
}