Suppose I have a data class like this: ``` data cl...
# announcements
r
Suppose I have a data class like this:
Copy code
data class Person(private val _name: String) {
    val name = _name.toUpperCase()
}
Is there any way to automatically include the
name
property into the generated code for the
equals
and
hashcode
functions?