NullableStateFlowWrapper

open class NullableStateFlowWrapper<T : Any>(getter: () -> T?, origin: Flow<T?>) : NullableFlowWrapper<T>

Constructors

Link copied to clipboard
fun <T : Any> NullableStateFlowWrapper(getter: () -> T?, origin: Flow<T?>)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open suspend override fun collect(collector: FlowCollector<T?>)
Link copied to clipboard
open fun watch(    onNext: (T?) -> Unit,     onError: (Exception) -> Unit,     onCompleted: () -> Unit,     coroutineScope: CoroutineScope = MainScope()): FlowWrapperWatchToken

Properties

Link copied to clipboard
open val value: T?

Inheritors

Link copied to clipboard