copyWithWrapped method
Implementation
WebApiModulesIntegrationsStorefrontStorefrontSettingsPropertySchemaValidValue
copyWithWrapped({Wrapped<String?>? caption, Wrapped<String?>? value}) {
return WebApiModulesIntegrationsStorefrontStorefrontSettingsPropertySchemaValidValue(
caption: (caption != null ? caption.value : this.caption),
value: (value != null ? value.value : this.value),
);
}