copyWith method

ConditionParameterJsonGetAttribute copyWith({
  1. JsonGetAttribute? jsonGetAttribute,
  2. FormatOptionsHelper? formatOptionsHelper,
})

Implementation

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