asMutableStateWithLifecycle

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