copyWith method
WebApiModulesWarehouseCheckInSerialNumbers
copyWith(
{ - String? serialNumber,
- String? itemStatus,
- bool? inSession,
- bool? qCRequired,
- int? orderTranId,
- String? internalChar,
- String? orderId,
- String? orderItemId,
- String? inventoryId,
- String? vendorId,
- String? description,
- int? quantity,
})
Implementation
WebApiModulesWarehouseCheckInSerialNumbers copyWith(
{String? serialNumber,
String? itemStatus,
bool? inSession,
bool? qCRequired,
int? orderTranId,
String? internalChar,
String? orderId,
String? orderItemId,
String? inventoryId,
String? vendorId,
String? description,
int? quantity}) {
return WebApiModulesWarehouseCheckInSerialNumbers(
serialNumber: serialNumber ?? this.serialNumber,
itemStatus: itemStatus ?? this.itemStatus,
inSession: inSession ?? this.inSession,
qCRequired: qCRequired ?? this.qCRequired,
orderTranId: orderTranId ?? this.orderTranId,
internalChar: internalChar ?? this.internalChar,
orderId: orderId ?? this.orderId,
orderItemId: orderItemId ?? this.orderItemId,
inventoryId: inventoryId ?? this.inventoryId,
vendorId: vendorId ?? this.vendorId,
description: description ?? this.description,
quantity: quantity ?? this.quantity);
}