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