copyWithWrapped method
Implementation
WebApiModulesWarehouseCheckOutPickupLocation copyWithWrapped({
Wrapped<int?>? pickupLocationId,
Wrapped<String?>? description,
}) {
return WebApiModulesWarehouseCheckOutPickupLocation(
pickupLocationId: (pickupLocationId != null
? pickupLocationId.value
: this.pickupLocationId),
description: (description != null ? description.value : this.description),
);
}