I\'m trying to get a value from LiveData with observeAsState in jetpack compose, but I get a weird error
Type \'State\' has no method \'getValue
I think type of items must be nullable since you observing LiveData:
val items: List? by userViewModel.fetchUserList.observeAsState()