copyWith method
ConditionParameterJsonGetAttribute
copyWith({
- JsonGetAttribute? jsonGetAttribute,
- FormatOptionsHelper? formatOptionsHelper,
Implementation
ConditionParameterJsonGetAttribute copyWith({
JsonGetAttribute? jsonGetAttribute,
FormatOptionsHelper? formatOptionsHelper,
}) {
return ConditionParameterJsonGetAttribute(
jsonGetAttribute: jsonGetAttribute ?? this.jsonGetAttribute,
formatOptionsHelper: formatOptionsHelper ?? this.formatOptionsHelper,
);
}