HI
I am currnetly doing android jetpack compose course. In the code posted i see GameUiState is data class which is used as value in MutableStateFlow. I have been reading MutableStateFlow documentation I could not find what can be used as value. Please suggest any document that I can read to understand. Thank you
data class GameUiState(
val currentScrambledWord: String = ""
import kotlinx.coroutines.flow.MutableStateFlow
private val _uiState = MutableStateFlow(GameUiState())