dropWhile

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

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