copyWith method

ConditionParameterInt copyWith({
  1. int? value,
  2. FormatOptionsHelper? formatOptionsHelper,
})

Implementation

ConditionParameterInt copyWith({
  int? value,
  FormatOptionsHelper? formatOptionsHelper,
}) {
  return ConditionParameterInt(
    value: value ?? this.value,
    formatOptionsHelper: formatOptionsHelper ?? this.formatOptionsHelper,
  );
}