dropWhile

fun <T> Flow<T>.dropWhile(predicate: suspend (T) -> Boolean): Flow<T>

Returns a flow containing all elements except first elements that satisfy the given predicate.

Sources

Link copied to clipboard