collectAsStateWithLifecycleNotNull

@Composable
fun <T> StorageSetting<T>.collectAsStateWithLifecycleNotNull(lifecycle: Lifecycle, initialValue: T = getValueNotNull(), minActiveState: Lifecycle.State = Lifecycle.State.STARTED, context: CoroutineContext = EmptyCoroutineContext): State<T>
@Composable
fun <T, X> StorageSetting<T>.collectAsStateWithLifecycleNotNull(lifecycle: Lifecycle, initialValue: T = getValueNotNull(), minActiveState: Lifecycle.State = Lifecycle.State.STARTED, context: CoroutineContext = EmptyCoroutineContext, mapper: (T) -> X): State<X>
@Composable
fun <T> StorageSetting<T>.collectAsStateWithLifecycleNotNull(initialValue: T = getValueNotNull(), lifecycleOwner: LifecycleOwner = LocalLifecycleOwner.current, minActiveState: Lifecycle.State = Lifecycle.State.STARTED, context: CoroutineContext = EmptyCoroutineContext): State<T>
@Composable
fun <T, X> StorageSetting<T>.collectAsStateWithLifecycleNotNull(initialValue: T = getValueNotNull(), lifecycleOwner: LifecycleOwner = LocalLifecycleOwner.current, minActiveState: Lifecycle.State = Lifecycle.State.STARTED, context: CoroutineContext = EmptyCoroutineContext, mapper: (T) -> X): State<X>