copyWith method

WorkflowCompoundCondition copyWith({
  1. List<WorkflowCondition>? conditions,
  2. String? nodeType,
  3. 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$,
  );
}