copyWith method
Implementation
WorkflowRuleConfiguration copyWith(
{String? id, Map<String, dynamic>? parameters, String? ruleKey}) {
return WorkflowRuleConfiguration(
id: id ?? this.id,
parameters: parameters ?? this.parameters,
ruleKey: ruleKey ?? this.ruleKey,
);
}