1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-06-19 08:15:16 +00:00

Display the list of members of a group

This commit is contained in:
2020-05-02 11:18:03 +02:00
parent bff73dbb21
commit e2bf5e73dd
4 changed files with 99 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import 'package:comunic/lists/abstract_list.dart';
import 'package:comunic/models/group_membership.dart';
/// Group members list
///
/// @author Pierre Hubert
class GroupMembersList extends AbstractList<GroupMembership> {
/// Get the list of users in this set
Set<int> get usersID => map((f) => f.userID).toSet();
}