Let's say I have this flow ```fun loadUsersByRegio...
# random
p
Let's say I have this flow
Copy code
fun loadUsersByRegion(regions: List<String>): Flow<List<User>>
I want to call fetchInfo on each item without nesting map....
Copy code
fun fetchInfo(user: User): Info
is there any better?
Copy code
.flatMapConcat { users ->
            flow {
                val usersInfo = users.map { user -> fetchInfo(user) }
                emit(usersInfo)
            }
        }