copyWithWrapped method
Implementation
WebApiModulesWarehouseCheckInReconcileReconcileOrder copyWithWrapped(
{Wrapped<String?>? orderNumber,
Wrapped<String?>? description,
Wrapped<String?>? dueDate,
Wrapped<int?>? count,
Wrapped<int?>? stillOut,
Wrapped<String?>? vendor,
Wrapped<String?>? orderId,
Wrapped<String?>? vendorId,
Wrapped<int?>? quantity}) {
return WebApiModulesWarehouseCheckInReconcileReconcileOrder(
orderNumber:
(orderNumber != null ? orderNumber.value : this.orderNumber),
description:
(description != null ? description.value : this.description),
dueDate: (dueDate != null ? dueDate.value : this.dueDate),
count: (count != null ? count.value : this.count),
stillOut: (stillOut != null ? stillOut.value : this.stillOut),
vendor: (vendor != null ? vendor.value : this.vendor),
orderId: (orderId != null ? orderId.value : this.orderId),
vendorId: (vendorId != null ? vendorId.value : this.vendorId),
quantity: (quantity != null ? quantity.value : this.quantity));
}