copyWithWrapped method

Implementation

WebApiModulesIntegrationsStorefrontWebCatalogResponseField copyWithWrapped({
  Wrapped<String?>? value,
  Wrapped<String?>? text,
  Wrapped<bool?>? selected,
}) {
  return WebApiModulesIntegrationsStorefrontWebCatalogResponseField(
    value: (value != null ? value.value : this.value),
    text: (text != null ? text.value : this.text),
    selected: (selected != null ? selected.value : this.selected),
  );
}