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