fetchOrElse

inline fun <T : Any> FetchFlow<T>.fetchOrElse(crossinline recover: suspend (Fetch<T>) -> T): Flow<T>

Return

A Flow of the result of a Fetch or the result of recover.