copyWith method
WorkflowCompoundCondition
copyWith({
- List<
WorkflowCondition> ? conditions, - String? nodeType,
- WorkflowCompoundConditionOperator? operator$,
Implementation
WorkflowCompoundCondition copyWith(
{List<WorkflowCondition>? conditions,
String? nodeType,
WorkflowCompoundConditionOperator? operator$}) {
return WorkflowCompoundCondition(
conditions: conditions ?? this.conditions,
nodeType: nodeType ?? this.nodeType,
operator$: operator$ ?? this.operator$,
);
}