`val description = descriptionTextView.text.toStri...
# getting-started
r
val description = descriptionTextView.text.toString().takeUnless { it.isBlank() } ?: "A DefaultString"
🤔 1
👍 7
i
you could prolly also do .takeUnless(String::isBlank)
👍 1