copyWith method
CreateWorkflowCondition
copyWith({
- List<
CreateWorkflowCondition> ? conditions, - Map<
String, dynamic> ? configuration, - CreateWorkflowConditionOperator? operator$,
- String? type,
Implementation
CreateWorkflowCondition copyWith(
{List<CreateWorkflowCondition>? conditions,
Map<String, dynamic>? configuration,
CreateWorkflowConditionOperator? operator$,
String? type}) {
return CreateWorkflowCondition(
conditions: conditions ?? this.conditions,
configuration: configuration ?? this.configuration,
operator$: operator$ ?? this.operator$,
type: type ?? this.type,
);
}