ResultFetch

typealias ResultFetch<Ok> = Flow<Fetch<KotlinResult<Ok>>>

Alias for a flow that fetches a result.

val result: ResultFetch<String> = fetch {
// Return a Result from inside the Fetch runner
resultOf { "A value." }
}

See also