flatMapListConcat

suspend fun <T, R> Flow<T>.flatMapListConcat(destination: MutableList<R> = mutableListOf(), transform: suspend (T) -> List<R>): List<R>

Sources

Link copied to clipboard