copyWith method
Implementation
WebApiModulesWarehouseCheckInSwapItem copyWith({
String? iCode,
String? description,
String? inBarcode,
String? inOrder,
String? swappedWithBarcode,
String? swappedWithOrder,
String? scannedBy,
}) {
return WebApiModulesWarehouseCheckInSwapItem(
iCode: iCode ?? this.iCode,
description: description ?? this.description,
inBarcode: inBarcode ?? this.inBarcode,
inOrder: inOrder ?? this.inOrder,
swappedWithBarcode: swappedWithBarcode ?? this.swappedWithBarcode,
swappedWithOrder: swappedWithOrder ?? this.swappedWithOrder,
scannedBy: scannedBy ?? this.scannedBy,
);
}