vovkab
11/25/2016, 2:23 AMpublic class User {
public final String name;
public final int age;
public User(String name, int age) {
this.name = name;
this.age = age;
}
}
We will have a class with just 1 method for constructor.
But would be great to re use kotlins named parameters.