KotlinResultFlow

typealias KotlinResultFlow<Ok> = Flow<KotlinResult<Ok>>

Typealias for a Flow of KotlinResult values.

Parameters

Ok

The success value type of each result in the flow.

See also