copyWithWrapped method
WebApiModulesIntegrationsStorefrontStorefrontSettings
copyWithWrapped({
- Wrapped<
bool?> ? isStorefrontEnabled, - Wrapped<
bool?> ? isUniversity, - Wrapped<
bool?> ? isAnonymousAccessEnabled, - Wrapped<
bool?> ? separateQuoteRequestsByCatalog, - Wrapped<
bool?> ? makeQuoteRequestIntoOrderOnSubmission, - Wrapped<
bool?> ? filterCatalogsByLocation, - Wrapped<
double?> ? autoplaySpeed, - Wrapped<
bool?> ? autoplayImagesOnLandingPage, - Wrapped<
bool?> ? autoplayImagesOnProductBrowser, - Wrapped<
bool?> ? autoplayImagesOnProductDetails,
Implementation
WebApiModulesIntegrationsStorefrontStorefrontSettings copyWithWrapped({
Wrapped<bool?>? isStorefrontEnabled,
Wrapped<bool?>? isUniversity,
Wrapped<bool?>? isAnonymousAccessEnabled,
Wrapped<bool?>? separateQuoteRequestsByCatalog,
Wrapped<bool?>? makeQuoteRequestIntoOrderOnSubmission,
Wrapped<bool?>? filterCatalogsByLocation,
Wrapped<double?>? autoplaySpeed,
Wrapped<bool?>? autoplayImagesOnLandingPage,
Wrapped<bool?>? autoplayImagesOnProductBrowser,
Wrapped<bool?>? autoplayImagesOnProductDetails,
}) {
return WebApiModulesIntegrationsStorefrontStorefrontSettings(
isStorefrontEnabled: (isStorefrontEnabled != null
? isStorefrontEnabled.value
: this.isStorefrontEnabled),
isUniversity: (isUniversity != null
? isUniversity.value
: this.isUniversity),
isAnonymousAccessEnabled: (isAnonymousAccessEnabled != null
? isAnonymousAccessEnabled.value
: this.isAnonymousAccessEnabled),
separateQuoteRequestsByCatalog: (separateQuoteRequestsByCatalog != null
? separateQuoteRequestsByCatalog.value
: this.separateQuoteRequestsByCatalog),
makeQuoteRequestIntoOrderOnSubmission:
(makeQuoteRequestIntoOrderOnSubmission != null
? makeQuoteRequestIntoOrderOnSubmission.value
: this.makeQuoteRequestIntoOrderOnSubmission),
filterCatalogsByLocation: (filterCatalogsByLocation != null
? filterCatalogsByLocation.value
: this.filterCatalogsByLocation),
autoplaySpeed: (autoplaySpeed != null
? autoplaySpeed.value
: this.autoplaySpeed),
autoplayImagesOnLandingPage: (autoplayImagesOnLandingPage != null
? autoplayImagesOnLandingPage.value
: this.autoplayImagesOnLandingPage),
autoplayImagesOnProductBrowser: (autoplayImagesOnProductBrowser != null
? autoplayImagesOnProductBrowser.value
: this.autoplayImagesOnProductBrowser),
autoplayImagesOnProductDetails: (autoplayImagesOnProductDetails != null
? autoplayImagesOnProductDetails.value
: this.autoplayImagesOnProductDetails),
);
}