copyWithWrapped method

WebApiModulesWarehouseCheckInReconcileReconcileOrder copyWithWrapped({
  1. Wrapped<String?>? orderNumber,
  2. Wrapped<String?>? description,
  3. Wrapped<String?>? dueDate,
  4. Wrapped<int?>? count,
  5. Wrapped<int?>? stillOut,
  6. Wrapped<String?>? vendor,
  7. Wrapped<String?>? orderId,
  8. Wrapped<String?>? vendorId,
  9. Wrapped<int?>? quantity,
})

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),
  );
}