copyWith method

ConditionParameterCurrentValue copyWith({
  1. FormatOptionsHelper? formatOptionsHelper,
})

Implementation

ConditionParameterCurrentValue copyWith({
  FormatOptionsHelper? formatOptionsHelper,
}) {
  return ConditionParameterCurrentValue(
    formatOptionsHelper: formatOptionsHelper ?? this.formatOptionsHelper,
  );
}