getStateFlow

fun <T : Any> getStateFlow(key: NonNullSavedStateHandleKey<T>): StateFlow<T>
fun <T : Any> getStateFlow(key: NullableSavedStateHandleKey<T>): StateFlow<T?>

Returns a StateFlow that will emit the currently active value associated with the given key.

See also