NullableStateFlowWrapper

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

Types

Companion
Link copied to clipboard
object Companion

Functions

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

Properties

value
Link copied to clipboard
open val value: T?

Inheritors

NullableMutableStateFlowWrapper
Link copied to clipboard