copyWithWrapped method
Implementation
WebApiModulesPluginsShopifyLocation copyWithWrapped({
Wrapped<String?>? locationId,
Wrapped<String?>? locationName,
Wrapped<String?>? storeURL,
Wrapped<String?>? adminAPIAccessToken,
Wrapped<String?>? secretKey,
Wrapped<String?>? shopifyStoreId,
}) {
return WebApiModulesPluginsShopifyLocation(
locationId: (locationId != null ? locationId.value : this.locationId),
locationName: (locationName != null
? locationName.value
: this.locationName),
storeURL: (storeURL != null ? storeURL.value : this.storeURL),
adminAPIAccessToken: (adminAPIAccessToken != null
? adminAPIAccessToken.value
: this.adminAPIAccessToken),
secretKey: (secretKey != null ? secretKey.value : this.secretKey),
shopifyStoreId: (shopifyStoreId != null
? shopifyStoreId.value
: this.shopifyStoreId),
);
}