copyWithWrapped method

WebApiModulesHomeControlsPickListUtilityItemApplyPickListSessionItemsRequest copyWithWrapped({
  1. Wrapped<String?>? sessionId,
  2. Wrapped<bool?>? itemsNotYetStaged,
  3. Wrapped<bool?>? itemsStaged,
  4. Wrapped<bool?>? itemsOut,
  5. Wrapped<DateTime?>? pickDateFrom,
  6. Wrapped<DateTime?>? pickDateTo,
  7. Wrapped<bool?>? rentalItems,
  8. Wrapped<bool?>? salesItems,
  9. Wrapped<bool?>? vendorItems,
  10. Wrapped<bool?>? laborItems,
  11. Wrapped<String?>? warehouseId,
  12. Wrapped<bool?>? completeKitMains,
  13. Wrapped<bool?>? completeKitAccessories,
  14. Wrapped<bool?>? completeKitOptions,
  15. Wrapped<bool?>? standAloneItems,
  16. Wrapped<bool?>? itemsOnOtherPickLists,
  17. Wrapped<bool?>? reduceQuantityAlreadyPicked,
  18. Wrapped<bool?>? summarizeByICode,
  19. Wrapped<bool?>? summarizeCompleteKitItems,
  20. Wrapped<bool?>? honorCompleteKitItemTypes,
  21. Wrapped<String?>? inventoryTypeId,
  22. Wrapped<bool?>? selectAll,
  23. Wrapped<bool?>? selectNone,
})

Implementation

WebApiModulesHomeControlsPickListUtilityItemApplyPickListSessionItemsRequest
copyWithWrapped({
  Wrapped<String?>? sessionId,
  Wrapped<bool?>? itemsNotYetStaged,
  Wrapped<bool?>? itemsStaged,
  Wrapped<bool?>? itemsOut,
  Wrapped<DateTime?>? pickDateFrom,
  Wrapped<DateTime?>? pickDateTo,
  Wrapped<bool?>? rentalItems,
  Wrapped<bool?>? salesItems,
  Wrapped<bool?>? vendorItems,
  Wrapped<bool?>? laborItems,
  Wrapped<String?>? warehouseId,
  Wrapped<bool?>? completeKitMains,
  Wrapped<bool?>? completeKitAccessories,
  Wrapped<bool?>? completeKitOptions,
  Wrapped<bool?>? standAloneItems,
  Wrapped<bool?>? itemsOnOtherPickLists,
  Wrapped<bool?>? reduceQuantityAlreadyPicked,
  Wrapped<bool?>? summarizeByICode,
  Wrapped<bool?>? summarizeCompleteKitItems,
  Wrapped<bool?>? honorCompleteKitItemTypes,
  Wrapped<String?>? inventoryTypeId,
  Wrapped<bool?>? selectAll,
  Wrapped<bool?>? selectNone,
}) {
  return WebApiModulesHomeControlsPickListUtilityItemApplyPickListSessionItemsRequest(
    sessionId: (sessionId != null ? sessionId.value : this.sessionId),
    itemsNotYetStaged: (itemsNotYetStaged != null
        ? itemsNotYetStaged.value
        : this.itemsNotYetStaged),
    itemsStaged: (itemsStaged != null ? itemsStaged.value : this.itemsStaged),
    itemsOut: (itemsOut != null ? itemsOut.value : this.itemsOut),
    pickDateFrom: (pickDateFrom != null
        ? pickDateFrom.value
        : this.pickDateFrom),
    pickDateTo: (pickDateTo != null ? pickDateTo.value : this.pickDateTo),
    rentalItems: (rentalItems != null ? rentalItems.value : this.rentalItems),
    salesItems: (salesItems != null ? salesItems.value : this.salesItems),
    vendorItems: (vendorItems != null ? vendorItems.value : this.vendorItems),
    laborItems: (laborItems != null ? laborItems.value : this.laborItems),
    warehouseId: (warehouseId != null ? warehouseId.value : this.warehouseId),
    completeKitMains: (completeKitMains != null
        ? completeKitMains.value
        : this.completeKitMains),
    completeKitAccessories: (completeKitAccessories != null
        ? completeKitAccessories.value
        : this.completeKitAccessories),
    completeKitOptions: (completeKitOptions != null
        ? completeKitOptions.value
        : this.completeKitOptions),
    standAloneItems: (standAloneItems != null
        ? standAloneItems.value
        : this.standAloneItems),
    itemsOnOtherPickLists: (itemsOnOtherPickLists != null
        ? itemsOnOtherPickLists.value
        : this.itemsOnOtherPickLists),
    reduceQuantityAlreadyPicked: (reduceQuantityAlreadyPicked != null
        ? reduceQuantityAlreadyPicked.value
        : this.reduceQuantityAlreadyPicked),
    summarizeByICode: (summarizeByICode != null
        ? summarizeByICode.value
        : this.summarizeByICode),
    summarizeCompleteKitItems: (summarizeCompleteKitItems != null
        ? summarizeCompleteKitItems.value
        : this.summarizeCompleteKitItems),
    honorCompleteKitItemTypes: (honorCompleteKitItemTypes != null
        ? honorCompleteKitItemTypes.value
        : this.honorCompleteKitItemTypes),
    inventoryTypeId: (inventoryTypeId != null
        ? inventoryTypeId.value
        : this.inventoryTypeId),
    selectAll: (selectAll != null ? selectAll.value : this.selectAll),
    selectNone: (selectNone != null ? selectNone.value : this.selectNone),
  );
}