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