I need to call a Java method with a varargs parame...
# announcements
d
I need to call a Java method with a varargs parameter and the API requires me to pass
null
for the "vararg array". Is there a way to do that in Kotlin?
null as Array<String>?
does not work.
k
*null
doesn't happen to work?
d
No 😞