Nemanja Scepanovic
fun getBooksFlow: Flow<List<Book>> = getUserFlow().flatMapLatest { user -> getUserBooksFlow(user.userId) }.flowOn(Dispatchers.Default)
gildor
A modern programming language that makes developers happier.