copyWithWrapped method
Implementation
WebApiModulesPluginsShopifyShopifyIntegrationStatusValue copyWithWrapped({
Wrapped<bool?>? installed,
Wrapped<String?>? status,
}) {
return WebApiModulesPluginsShopifyShopifyIntegrationStatusValue(
installed: (installed != null ? installed.value : this.installed),
status: (status != null ? status.value : this.status),
);
}