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