copyWith method

WebApiModulesHomeControlsPickListItemPickListItem copyWith({
  1. String? pickListItemId,
  2. String? pickListId,
  3. String? orderId,
  4. String? orderNumber,
  5. String? masterItemId,
  6. String? usersId,
  7. int? pickQuantity,
  8. int? quantityOrdered,
  9. int? consignQuantity,
  10. int? stagedQuantity,
  11. int? outQuantity,
  12. int? inLocationQuantity,
  13. String? masterId,
  14. String? iCode,
  15. String? iCodeColor,
  16. String? description,
  17. String? descriptionColor,
  18. String? optionColor,
  19. String? itemClass,
  20. String? itemOrder,
  21. String? pickDate,
  22. String? pickTime,
  23. String? recType,
  24. String? vendorId,
  25. String? consignorId,
  26. String? vendorConsignorColor,
  27. String? vendorConsignor,
  28. String? inventoryTypeId,
  29. String? categoryId,
  30. String? warehouseId,
  31. bool? conflict,
  32. bool? bold,
  33. String? itemOrderPickList,
  34. String? notes,
  35. String? barCode,
  36. String? serialNumber,
  37. String? rfId,
  38. int? nestingLevel,
  39. String? dateStamp,
  40. String? auditNote,
  41. String? recordTitle,
  42. List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
  43. List<FwStandardDataFwCustomValue>? custom,
  44. List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
  45. List<FwStandardDataFwTranslatedValue>? translation,
})

Implementation

WebApiModulesHomeControlsPickListItemPickListItem copyWith(
    {String? pickListItemId,
    String? pickListId,
    String? orderId,
    String? orderNumber,
    String? masterItemId,
    String? usersId,
    int? pickQuantity,
    int? quantityOrdered,
    int? consignQuantity,
    int? stagedQuantity,
    int? outQuantity,
    int? inLocationQuantity,
    String? masterId,
    String? iCode,
    String? iCodeColor,
    String? description,
    String? descriptionColor,
    String? optionColor,
    String? itemClass,
    String? itemOrder,
    String? pickDate,
    String? pickTime,
    String? recType,
    String? vendorId,
    String? consignorId,
    String? vendorConsignorColor,
    String? vendorConsignor,
    String? inventoryTypeId,
    String? categoryId,
    String? warehouseId,
    bool? conflict,
    bool? bold,
    String? itemOrderPickList,
    String? notes,
    String? barCode,
    String? serialNumber,
    String? rfId,
    int? nestingLevel,
    String? dateStamp,
    String? auditNote,
    String? recordTitle,
    List<FwStandardBusinessLogicFwBusinessLogicFieldDefinition>? fields,
    List<FwStandardDataFwCustomValue>? custom,
    List<FwStandardDataFwDefaultAttribute>? defaultFieldAttributes,
    List<FwStandardDataFwTranslatedValue>? translation}) {
  return WebApiModulesHomeControlsPickListItemPickListItem(
      pickListItemId: pickListItemId ?? this.pickListItemId,
      pickListId: pickListId ?? this.pickListId,
      orderId: orderId ?? this.orderId,
      orderNumber: orderNumber ?? this.orderNumber,
      masterItemId: masterItemId ?? this.masterItemId,
      usersId: usersId ?? this.usersId,
      pickQuantity: pickQuantity ?? this.pickQuantity,
      quantityOrdered: quantityOrdered ?? this.quantityOrdered,
      consignQuantity: consignQuantity ?? this.consignQuantity,
      stagedQuantity: stagedQuantity ?? this.stagedQuantity,
      outQuantity: outQuantity ?? this.outQuantity,
      inLocationQuantity: inLocationQuantity ?? this.inLocationQuantity,
      masterId: masterId ?? this.masterId,
      iCode: iCode ?? this.iCode,
      iCodeColor: iCodeColor ?? this.iCodeColor,
      description: description ?? this.description,
      descriptionColor: descriptionColor ?? this.descriptionColor,
      optionColor: optionColor ?? this.optionColor,
      itemClass: itemClass ?? this.itemClass,
      itemOrder: itemOrder ?? this.itemOrder,
      pickDate: pickDate ?? this.pickDate,
      pickTime: pickTime ?? this.pickTime,
      recType: recType ?? this.recType,
      vendorId: vendorId ?? this.vendorId,
      consignorId: consignorId ?? this.consignorId,
      vendorConsignorColor: vendorConsignorColor ?? this.vendorConsignorColor,
      vendorConsignor: vendorConsignor ?? this.vendorConsignor,
      inventoryTypeId: inventoryTypeId ?? this.inventoryTypeId,
      categoryId: categoryId ?? this.categoryId,
      warehouseId: warehouseId ?? this.warehouseId,
      conflict: conflict ?? this.conflict,
      bold: bold ?? this.bold,
      itemOrderPickList: itemOrderPickList ?? this.itemOrderPickList,
      notes: notes ?? this.notes,
      barCode: barCode ?? this.barCode,
      serialNumber: serialNumber ?? this.serialNumber,
      rfId: rfId ?? this.rfId,
      nestingLevel: nestingLevel ?? this.nestingLevel,
      dateStamp: dateStamp ?? this.dateStamp,
      auditNote: auditNote ?? this.auditNote,
      recordTitle: recordTitle ?? this.recordTitle,
      fields: fields ?? this.fields,
      custom: custom ?? this.custom,
      defaultFieldAttributes:
          defaultFieldAttributes ?? this.defaultFieldAttributes,
      translation: translation ?? this.translation);
}