```fun getUserFromDB(id: Long): String? cache.com...
# announcements
o
Copy code
fun getUserFromDB(id: Long): String? 
cache.computeIfAbsent(agentId, { id -> getUserFromDB(agentId)})
it gives me an error since getUserFromDB has String? return type which can not be used with the supplied function