You can, of course, just not have a primary constr...
# android
k
You can, of course, just not have a primary constructor, and put them all inside the class body, and it'll look more Java-like. There are some disadvantages, though. You can't declare a
val
or
var
in the secondary constructor, you can't delegate an interface on the class, it's not the canonical "Kotlin way" to have only secondary constructors, etc