copyWith method
Implementation
ConditionParameterText copyWith({
String? value,
FormatOptionsHelper? formatOptionsHelper,
}) {
return ConditionParameterText(
value: value ?? this.value,
formatOptionsHelper: formatOptionsHelper ?? this.formatOptionsHelper,
);
}