correct... but this right here is completely contradicting the link you sent.... in your link it says that var firstName: String gets converted to private String firstName.... So in essence when converting Kotlin to Java the firstName property(public by default as mentioned here
https://kotlinlang.org/docs/reference/visibility-modifiers.html ) get's converted to a private field? 🤔