Say I have a component with state like: ``` state...
# react
c
Say I have a component with state like:
Copy code
state = {
    var firstName: String
    var touched: 
}
If I wanted to update that in javascript i could do something like
Copy code
setState({ ...state, touched = true})
How could I do something like that in Kotlin?