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