Just learned today. In order to access a kotlin me...
# random
c
Just learned today. In order to access a kotlin method with optional parameters from java, we can use
@JvmOverloads
annotation:
Copy code
@JvmOverloads fun check(callListeners : Boolean = true): Boolean { return true;}