copyWith method
WebApiModulesWarehouseCheckInReconcileReconcileItemsRequest
copyWith({
- String? quikInContractId,
- bool? crossVendor,
- List<
WebApiModulesWarehouseCheckInReconcileReconcileICode> ? items,
Implementation
WebApiModulesWarehouseCheckInReconcileReconcileItemsRequest copyWith(
{String? quikInContractId,
bool? crossVendor,
List<WebApiModulesWarehouseCheckInReconcileReconcileICode>? items}) {
return WebApiModulesWarehouseCheckInReconcileReconcileItemsRequest(
quikInContractId: quikInContractId ?? this.quikInContractId,
crossVendor: crossVendor ?? this.crossVendor,
items: items ?? this.items);
}