bool isSeen(Set<String> participants) { return participants.every((e) { if (e == me) return true; return statuses[e] == MessageStatus.seen; }); }