Is the idiomatic way to call nullable lambdas `lam...
# codingconventions
l
Is the idiomatic way to call nullable lambdas
lamdba?.invoke()
?
f
I’d not have nullable lambda in the first place
Copy code
fun foo(init: Bar -> Unit = {}) {

}
sounds better
If that conforms your use-case