copyWith method
Implementation
WebApiModulesIntegrationsStorefrontQuoteRequestPackageItem copyWith({
String? inventoryId,
String? inventoryPackageInventoryId,
double? qty,
}) {
return WebApiModulesIntegrationsStorefrontQuoteRequestPackageItem(
inventoryId: inventoryId ?? this.inventoryId,
inventoryPackageInventoryId:
inventoryPackageInventoryId ?? this.inventoryPackageInventoryId,
qty: qty ?? this.qty,
);
}