Is there any way to chain multiple lets for multiple nullable variables in kotlin?
fun example(first: String?, second: String?) { first?.let { se
You could also do this
if (listOfNotNull(var1, var2, var3).size == 3) { // All variables are non-null }