NullableStateFlowWrapper
class NullableStateFlowWrapper<T> constructor(@ObjCName(name = "_") flow: StateFlow<T>) : NullableFlowWrapper<T> , StateFlow<T>
Same as NullableFlowWrapper but wraps and implements StateFlow and exposes the current value.
Functions
Link copied to clipboard
open fun subscribe(scope: CoroutineScope, onValue: OnValue<T>, onComplete: OnComplete): JoinableAndCloseable
open fun subscribe(scope: CoroutineScope, onValue: OnValue<T>, onError: OnError): JoinableAndCloseable
open fun subscribe(scope: CoroutineScope, onValue: OnValue<T>, onError: OnError, onComplete: OnComplete): JoinableAndCloseable