```override fun hashCode(): Int { var resu...
# getting-started
e
Copy code
override fun hashCode(): Int {
        var result = proxy0?.hashCode() ?: 0
        result = 31 * result + (proxy1?.hashCode() ?: 0)
        return result
    }
it looks so..