copyWith method
Implementation
WebApiModulesPluginsShopifyLocation copyWith({
String? locationId,
String? locationName,
String? storeURL,
String? adminAPIAccessToken,
String? secretKey,
String? shopifyStoreId,
}) {
return WebApiModulesPluginsShopifyLocation(
locationId: locationId ?? this.locationId,
locationName: locationName ?? this.locationName,
storeURL: storeURL ?? this.storeURL,
adminAPIAccessToken: adminAPIAccessToken ?? this.adminAPIAccessToken,
secretKey: secretKey ?? this.secretKey,
shopifyStoreId: shopifyStoreId ?? this.shopifyStoreId,
);
}