I'm probably missing something basic here. I'm going to blame it on sleep. But this defintiely used to work, but now the IDE is complaining "Parameters must have type annotation"
Copy code
class LoginUiState(
var screenTitle by mutableStateOf("")
)
t
Tash
01/18/2022, 9:39 PM
{}
instead of
()
?
Copy code
class LoginUiState {
var screenTitle by mutableStateOf("")
}