Package-level declarations
Types
Link copied to clipboard
A wrapper for Flow that provides a more convenient API for subscribing to the flow when using Flow on native platforms.
Link copied to clipboard
Link copied to clipboard
open class NonNullFlowWrapper<out T : Any> constructor(@ObjCName(name = "_") flow: Flow<T>) : AbstractFlowWrapper<T>
A wrapper for Flow that provides a more convenient API for subscribing to the flow when using Flow on native platforms.
Link copied to clipboard
class NonNullStateFlowWrapper<out T : Any> constructor(@ObjCName(name = "_") flow: StateFlow<T>) : NonNullFlowWrapper<T> , StateFlow<T>
Same as NonNullFlowWrapper but wraps and implements StateFlow and exposes the current value.
Link copied to clipboard
open class NullableFlowWrapper<out T> constructor(@ObjCName(name = "_") flow: Flow<T>) : AbstractFlowWrapper<T>
A wrapper for Flow that provides a more convenient API for subscribing to the flow when using Flow on native platforms.
Link copied to clipboard
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.