copyWith method

ConditionParameterText copyWith({
  1. String? value,
  2. FormatOptionsHelper? formatOptionsHelper,
})

Implementation

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