I have a Kotlin class with a single constructor wh...
# announcements
r
I have a Kotlin class with a single constructor whose last parameter has a default value, something like
class MyClass(s: String, t: Integer? = null)
. From Java reflection, it looks like the constructor with only one parameter does not exist (I use PicoContainer to instantiate the class). Is there a good solution to this?