My constructor is something like ``` MyObject( val...
# getting-started
g
My constructor is something like
Copy code
MyObject( val param1 : String, val param2 : String = "default value") {...}
the java file does :
Copy code
new MyObject( "value1")
and .. it is not working, it needs a second parameter !