filterIsNotEmpty

fun <T : Any> FetchFlow<T>.filterIsNotEmpty(): Flow<T>

Filter a FetchFlow by isNotEmpty, and unwrap the value if it exists.

Receiver

The FetchFlow to filter.

Return

A Flow of T.

Parameters

T

The type of the Fetch value.