copyWith method
Implementation
WebApiModulesSettingsInventorySettingsStorefrontUpdateCatalogItemPercentRequest
copyWith({int? onlineCatalogItemId, double? ownedQuantityPercent}) {
return WebApiModulesSettingsInventorySettingsStorefrontUpdateCatalogItemPercentRequest(
onlineCatalogItemId: onlineCatalogItemId ?? this.onlineCatalogItemId,
ownedQuantityPercent: ownedQuantityPercent ?? this.ownedQuantityPercent,
);
}