getParticipantsNotSender method Null safety
Implementation
Set<User> getParticipantsNotSender() {
return invitations
.where((e) => e.participant.userId != sender.userId)
.map<User>((e) => e.participant)
.toSet();
}
Set<User> getParticipantsNotSender() {
return invitations
.where((e) => e.participant.userId != sender.userId)
.map<User>((e) => e.participant)
.toSet();
}