I tried below and they don't work
fun get (headers: Array<String>= emptyArray())
fun get (headers: Array<String>= null)
fun get (headers: Array<String>= arrayOf(""))
fun get (headers: Array<String>= arrayOfNulls(1))
I checked the links below What's the Kotlin equivalent of Java's String[]?