collectAsState

@Composable
fun <T> StorageSetting<T>.collectAsState(initialValue: T? = getCachedValue()): State<T?>
@Composable
fun <T, X> StorageSetting<T>.collectAsState(initialValue: T? = getCachedValue(), mapper: (T) -> X): State<X?>