copyWithWrapped method
Implementation
WebApiModulesIntegrationsStorefrontWebCatalogWarehouseQtyDto copyWithWrapped({
Wrapped<String?>? warehouseId,
Wrapped<double?>? totalItems,
}) {
return WebApiModulesIntegrationsStorefrontWebCatalogWarehouseQtyDto(
warehouseId: (warehouseId != null ? warehouseId.value : this.warehouseId),
totalItems: (totalItems != null ? totalItems.value : this.totalItems),
);
}