dropUntil

inline fun <T> Flow<T>.dropUntil(notifier: Flow<Any?>): Flow<T>(source)

This function is an alias to skipUntil operator.

See also