filterOnlyFinished

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

Filter a FetchFlow by isFinished, and map to the result.

Receiver

The FetchFlow to filter.

Return

A Flow of T, the unwrapped result values.

Parameters

T

The type of the Fetch value.