import 'package:comunic/lists/abstract_list.dart'; import 'package:comunic/models/unread_conversation.dart'; /// List of unread conversations /// /// @author Pierre Hubert class UnreadConversationsList extends AbstractList { /// Get the ID of the users included in this list Set get usersID => new Set()..addAll(map((f) => f.userID)); }