copyWith method

WorkflowSimpleCondition copyWith({
  1. Map<String, dynamic>? configuration,
  2. String? nodeType,
  3. String? type,
})

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,
  );
}