copyWithWrapped method
WebApiModulesPluginsShopifyShopifyIntegrationStatus
copyWithWrapped({
- Wrapped<
WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?> ? storeUrl, - Wrapped<
WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?> ? adminApiAccessToken, - Wrapped<
WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?> ? storeId, - Wrapped<
WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?> ? secretKey, - Wrapped<
WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?> ? accessScopes, - Wrapped<
WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?> ? theme, - Wrapped<
WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?> ? createOrderWebhook,
Implementation
WebApiModulesPluginsShopifyShopifyIntegrationStatus copyWithWrapped({
Wrapped<WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?>?
storeUrl,
Wrapped<WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?>?
adminApiAccessToken,
Wrapped<WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?>? storeId,
Wrapped<WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?>?
secretKey,
Wrapped<WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?>?
accessScopes,
Wrapped<WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?>? theme,
Wrapped<WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?>?
createOrderWebhook,
}) {
return WebApiModulesPluginsShopifyShopifyIntegrationStatus(
storeUrl: (storeUrl != null ? storeUrl.value : this.storeUrl),
adminApiAccessToken: (adminApiAccessToken != null
? adminApiAccessToken.value
: this.adminApiAccessToken),
storeId: (storeId != null ? storeId.value : this.storeId),
secretKey: (secretKey != null ? secretKey.value : this.secretKey),
accessScopes: (accessScopes != null
? accessScopes.value
: this.accessScopes),
theme: (theme != null ? theme.value : this.theme),
createOrderWebhook: (createOrderWebhook != null
? createOrderWebhook.value
: this.createOrderWebhook),
);
}