``` var recipients: MutableList<String> ...
# announcements
d
Copy code
var recipients: MutableList<String> = mutableListOf()
    var recipient: String
        set(recipient: String) {
            recipients.add(recipient)
        }
a
Maybe I'm missing context, but what's the point of having the recipient field? Why not just call
recipients.add()
at whatever call site?