copyWithWrapped method
WebApiModulesWarehouseCheckInSerialNumbers
copyWithWrapped({
- Wrapped<
String?> ? serialNumber, - Wrapped<
String?> ? itemStatus, - Wrapped<
bool?> ? inSession, - Wrapped<
bool?> ? qCRequired, - Wrapped<
int?> ? orderTranId, - Wrapped<
String?> ? internalChar, - Wrapped<
String?> ? orderId, - Wrapped<
String?> ? orderItemId, - Wrapped<
String?> ? inventoryId, - Wrapped<
String?> ? vendorId, - Wrapped<
String?> ? description, - Wrapped<
int?> ? quantity,
Implementation
WebApiModulesWarehouseCheckInSerialNumbers copyWithWrapped({
Wrapped<String?>? serialNumber,
Wrapped<String?>? itemStatus,
Wrapped<bool?>? inSession,
Wrapped<bool?>? qCRequired,
Wrapped<int?>? orderTranId,
Wrapped<String?>? internalChar,
Wrapped<String?>? orderId,
Wrapped<String?>? orderItemId,
Wrapped<String?>? inventoryId,
Wrapped<String?>? vendorId,
Wrapped<String?>? description,
Wrapped<int?>? quantity,
}) {
return WebApiModulesWarehouseCheckInSerialNumbers(
serialNumber: (serialNumber != null
? serialNumber.value
: this.serialNumber),
itemStatus: (itemStatus != null ? itemStatus.value : this.itemStatus),
inSession: (inSession != null ? inSession.value : this.inSession),
qCRequired: (qCRequired != null ? qCRequired.value : this.qCRequired),
orderTranId: (orderTranId != null ? orderTranId.value : this.orderTranId),
internalChar: (internalChar != null
? internalChar.value
: this.internalChar),
orderId: (orderId != null ? orderId.value : this.orderId),
orderItemId: (orderItemId != null ? orderItemId.value : this.orderItemId),
inventoryId: (inventoryId != null ? inventoryId.value : this.inventoryId),
vendorId: (vendorId != null ? vendorId.value : this.vendorId),
description: (description != null ? description.value : this.description),
quantity: (quantity != null ? quantity.value : this.quantity),
);
}