copyWith method

Implementation

WebApiModulesIntegrationsStorefrontWebCatalogWarehouseQtyDto copyWith({
  String? warehouseId,
  double? totalItems,
}) {
  return WebApiModulesIntegrationsStorefrontWebCatalogWarehouseQtyDto(
    warehouseId: warehouseId ?? this.warehouseId,
    totalItems: totalItems ?? this.totalItems,
  );
}