copyWith method
Implementation
RuleConfiguration copyWith({bool? disabled, String? tag, String? value}) {
return RuleConfiguration(
disabled: disabled ?? this.disabled,
tag: tag ?? this.tag,
value: value ?? this.value,
);
}
RuleConfiguration copyWith({bool? disabled, String? tag, String? value}) {
return RuleConfiguration(
disabled: disabled ?? this.disabled,
tag: tag ?? this.tag,
value: value ?? this.value,
);
}