import 'package:comunic/lists/abstract_list.dart'; import 'package:comunic/models/membership.dart'; /// Memberships list /// /// @author Pierre Hubert class MembershipList extends AbstractList { /// Get the IDs of all the users included in some way in this list Set get usersId { final s = Set(); forEach((m) { switch (m.type) { case MembershipType.FRIEND: s.add(m.friend.id); break; case MembershipType.GROUP: break; case MembershipType.CONVERSATION: s.addAll(m.conversation.members); break; } }); return s; } /// Get the ID of the groups included in this list Set get groupsId => where((f) => f.type == MembershipType.GROUP) .map((f) => f.groupID) .toSet(); }