copyWithWrapped method
Implementation
WebApiServicesAvailabilityServiceTPendingRepairOrder copyWithWrapped({
Wrapped<String?>? repairOrderNumber,
Wrapped<String?>? orderId,
Wrapped<String?>? orderItemId,
Wrapped<String?>? inventoryId,
Wrapped<String?>? warehouseId,
Wrapped<
WebApiServicesAvailabilityServiceTInventoryWarehouseAvailabilityQuantity?
>?
quantity,
Wrapped<DateTime?>? damageOrderToDateTime,
}) {
return WebApiServicesAvailabilityServiceTPendingRepairOrder(
repairOrderNumber: (repairOrderNumber != null
? repairOrderNumber.value
: this.repairOrderNumber),
orderId: (orderId != null ? orderId.value : this.orderId),
orderItemId: (orderItemId != null ? orderItemId.value : this.orderItemId),
inventoryId: (inventoryId != null ? inventoryId.value : this.inventoryId),
warehouseId: (warehouseId != null ? warehouseId.value : this.warehouseId),
quantity: (quantity != null ? quantity.value : this.quantity),
damageOrderToDateTime: (damageOrderToDateTime != null
? damageOrderToDateTime.value
: this.damageOrderToDateTime),
);
}