copyWith method
Implementation
WebApiModulesInventoryInventoryReceiptAssignBarcodeRequest copyWith(
{String? inventoryReceiptId,
String? inventoryReceiptItemId,
String? departmentId}) {
return WebApiModulesInventoryInventoryReceiptAssignBarcodeRequest(
inventoryReceiptId: inventoryReceiptId ?? this.inventoryReceiptId,
inventoryReceiptItemId:
inventoryReceiptItemId ?? this.inventoryReceiptItemId,
departmentId: departmentId ?? this.departmentId);
}