copyWithWrapped method
Implementation
WebApiModulesIntegrationsStorefrontQuoteRequestPackageItem copyWithWrapped({
Wrapped<String>? inventoryId,
Wrapped<String>? inventoryPackageInventoryId,
Wrapped<double>? qty,
}) {
return WebApiModulesIntegrationsStorefrontQuoteRequestPackageItem(
inventoryId: (inventoryId != null ? inventoryId.value : this.inventoryId),
inventoryPackageInventoryId: (inventoryPackageInventoryId != null
? inventoryPackageInventoryId.value
: this.inventoryPackageInventoryId),
qty: (qty != null ? qty.value : this.qty),
);
}