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