so far I have: ``` if(obj.string?.isBlank() ?: true) ``` which is hard to read imho
b
so far I have:
Copy code
if(obj.string?.isBlank() ?: true)
which is hard to read imho
t
string.isNullOrBlank()?
👌 1