copyWith method
AvailableWorkflowForgeRule
copyWith({
- String? description,
- String? id,
- String? name,
- String? ruleKey,
- AvailableWorkflowForgeRuleRuleType? ruleType,
Implementation
AvailableWorkflowForgeRule copyWith(
{String? description,
String? id,
String? name,
String? ruleKey,
AvailableWorkflowForgeRuleRuleType? ruleType}) {
return AvailableWorkflowForgeRule(
description: description ?? this.description,
id: id ?? this.id,
name: name ?? this.name,
ruleKey: ruleKey ?? this.ruleKey,
ruleType: ruleType ?? this.ruleType,
);
}