Nullable strings may have the convenient `isNullOr...
# announcements
a
Nullable strings may have the convenient
isNullOrEmpty()
method, but this same method does not exist for lists. You either have to write your own extension method, or just do
other?.isEmpty() == true
where you need it.