Generally, if `a?.b?.c... != null` then I believe ...
# announcements
e
Generally, if
a?.b?.c... != null
then I believe you can say that
a != null && a.b != null && ...