copyWith method

Implementation

WebApiModulesPluginsShopifyShopifyIntegrationStatus copyWith({
  WebApiModulesPluginsShopifyShopifyIntegrationStatusValue? storeUrl,
  WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?
  adminApiAccessToken,
  WebApiModulesPluginsShopifyShopifyIntegrationStatusValue? storeId,
  WebApiModulesPluginsShopifyShopifyIntegrationStatusValue? secretKey,
  WebApiModulesPluginsShopifyShopifyIntegrationStatusValue? accessScopes,
  WebApiModulesPluginsShopifyShopifyIntegrationStatusValue? theme,
  WebApiModulesPluginsShopifyShopifyIntegrationStatusValue?
  createOrderWebhook,
}) {
  return WebApiModulesPluginsShopifyShopifyIntegrationStatus(
    storeUrl: storeUrl ?? this.storeUrl,
    adminApiAccessToken: adminApiAccessToken ?? this.adminApiAccessToken,
    storeId: storeId ?? this.storeId,
    secretKey: secretKey ?? this.secretKey,
    accessScopes: accessScopes ?? this.accessScopes,
    theme: theme ?? this.theme,
    createOrderWebhook: createOrderWebhook ?? this.createOrderWebhook,
  );
}