copyWithWrapped method
Implementation
WebApiModulesWarehouseCheckInCheckInSession copyWithWrapped({
Wrapped<String?>? contractId,
Wrapped<String?>? contractType,
Wrapped<String?>? dealId,
Wrapped<String?>? departmentId,
Wrapped<String?>? locationId,
Wrapped<String?>? warehouseId,
Wrapped<String?>? moduleType,
Wrapped<List<String>?>? orderIds,
}) {
return WebApiModulesWarehouseCheckInCheckInSession(
contractId: (contractId != null ? contractId.value : this.contractId),
contractType: (contractType != null
? contractType.value
: this.contractType),
dealId: (dealId != null ? dealId.value : this.dealId),
departmentId: (departmentId != null
? departmentId.value
: this.departmentId),
locationId: (locationId != null ? locationId.value : this.locationId),
warehouseId: (warehouseId != null ? warehouseId.value : this.warehouseId),
moduleType: (moduleType != null ? moduleType.value : this.moduleType),
orderIds: (orderIds != null ? orderIds.value : this.orderIds),
);
}