Paul, you could also do the following: ``` sub...
# announcements
d
Paul, you could also do the following:
Copy code
subscription?.isUnsubscribed?.let {
        // code
    }

    subscription?.let { subscription ->
        if (subscription.isUnsubscribed) {
            // things
        }
    }
It is debatable if the second version is nicer that the
if
-statement.