flatMap

fun <T, R> Flow<T>.flatMap(mapper: suspend (T) -> Iterable<R>): Flow<R>