Kotlin helps you make your code shorter and more readable in many areas. One of them is constructors. In Java you have to tediously assign all variables passed to the constructor in similar style
this.something = something
If more constructors are required, you have to overload them and repeat yourself over and over. Like in the following example.
Continue reading