copyWith method
Implementation
WorkflowSimpleCondition copyWith(
{Map<String, dynamic>? configuration, String? nodeType, String? type}) {
return WorkflowSimpleCondition(
configuration: configuration ?? this.configuration,
nodeType: nodeType ?? this.nodeType,
type: type ?? this.type,
);
}