copyWith method

ConditionParameterJson copyWith({
  1. Map<String, dynamic>? value,
  2. FormatOptionsHelper? formatOptionsHelper,
})

Implementation

ConditionParameterJson copyWith({
  Map<String, dynamic>? value,
  FormatOptionsHelper? formatOptionsHelper,
}) {
  return ConditionParameterJson(
    value: value ?? this.value,
    formatOptionsHelper: formatOptionsHelper ?? this.formatOptionsHelper,
  );
}