copyWith method
WebApiModulesWarehouseCheckInSelectedItemRequest
copyWith(
{ - int? orderTranId,
- String? internalChar,
- String? contractId,
- String? orderId,
- String? orderItemId,
- String? inventoryId,
- String? vendorId,
- String? description,
- int? quantityIn,
- int? quantityInRepair,
- int? quantity,
- String? assetId,
- String? consignorId,
- String? consignorAgreementId,
- String? repairId,
})
Implementation
WebApiModulesWarehouseCheckInSelectedItemRequest copyWith(
{int? orderTranId,
String? internalChar,
String? contractId,
String? orderId,
String? orderItemId,
String? inventoryId,
String? vendorId,
String? description,
int? quantityIn,
int? quantityInRepair,
int? quantity,
String? assetId,
String? consignorId,
String? consignorAgreementId,
String? repairId}) {
return WebApiModulesWarehouseCheckInSelectedItemRequest(
orderTranId: orderTranId ?? this.orderTranId,
internalChar: internalChar ?? this.internalChar,
contractId: contractId ?? this.contractId,
orderId: orderId ?? this.orderId,
orderItemId: orderItemId ?? this.orderItemId,
inventoryId: inventoryId ?? this.inventoryId,
vendorId: vendorId ?? this.vendorId,
description: description ?? this.description,
quantityIn: quantityIn ?? this.quantityIn,
quantityInRepair: quantityInRepair ?? this.quantityInRepair,
quantity: quantity ?? this.quantity,
assetId: assetId ?? this.assetId,
consignorId: consignorId ?? this.consignorId,
consignorAgreementId: consignorAgreementId ?? this.consignorAgreementId,
repairId: repairId ?? this.repairId);
}