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