hello.
I have two Kotlin classes -> Human and Main.
Human is a model class which has private var - name, age, address, language.
I want to create a Human instance in Main and access all of its data fields.
In Java, we used to implement getter and setter for each field. What is the tradition in Kotlin?
and also, how do we generate getter setter like we used to do for Java?