copyWithWrapped method
WebApiModulesWarehouseCheckInQuikInItem
copyWithWrapped({
- Wrapped<
String?> ? barcode, - Wrapped<
String?> ? iCode, - Wrapped<
String?> ? description, - Wrapped<
String?> ? inventoryId, - Wrapped<
String?> ? assetId, - Wrapped<
String?> ? itemClass, - Wrapped<
String?> ? packageId, - Wrapped<
String?> ? packageItemId, - Wrapped<
String?> ? orderBy, - Wrapped<
String?> ? vendorId, - Wrapped<
String?> ? nestedMasterItemId, - Wrapped<
int?> ? quantity, - Wrapped<
int?> ? quikInItemId, - Wrapped<
String?> ? internalChar, - Wrapped<
int?> ? status, - Wrapped<
String?> ? message,
Implementation
WebApiModulesWarehouseCheckInQuikInItem copyWithWrapped({
Wrapped<String?>? barcode,
Wrapped<String?>? iCode,
Wrapped<String?>? description,
Wrapped<String?>? inventoryId,
Wrapped<String?>? assetId,
Wrapped<String?>? itemClass,
Wrapped<String?>? packageId,
Wrapped<String?>? packageItemId,
Wrapped<String?>? orderBy,
Wrapped<String?>? vendorId,
Wrapped<String?>? nestedMasterItemId,
Wrapped<int?>? quantity,
Wrapped<int?>? quikInItemId,
Wrapped<String?>? internalChar,
Wrapped<int?>? status,
Wrapped<String?>? message,
}) {
return WebApiModulesWarehouseCheckInQuikInItem(
barcode: (barcode != null ? barcode.value : this.barcode),
iCode: (iCode != null ? iCode.value : this.iCode),
description: (description != null ? description.value : this.description),
inventoryId: (inventoryId != null ? inventoryId.value : this.inventoryId),
assetId: (assetId != null ? assetId.value : this.assetId),
itemClass: (itemClass != null ? itemClass.value : this.itemClass),
packageId: (packageId != null ? packageId.value : this.packageId),
packageItemId: (packageItemId != null
? packageItemId.value
: this.packageItemId),
orderBy: (orderBy != null ? orderBy.value : this.orderBy),
vendorId: (vendorId != null ? vendorId.value : this.vendorId),
nestedMasterItemId: (nestedMasterItemId != null
? nestedMasterItemId.value
: this.nestedMasterItemId),
quantity: (quantity != null ? quantity.value : this.quantity),
quikInItemId: (quikInItemId != null
? quikInItemId.value
: this.quikInItemId),
internalChar: (internalChar != null
? internalChar.value
: this.internalChar),
status: (status != null ? status.value : this.status),
message: (message != null ? message.value : this.message),
);
}