mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-23 05:19:22 +00:00
15 lines
436 B
Dart
15 lines
436 B
Dart
import 'package:comunic/lists/abstract_list.dart';
|
|
import 'package:comunic/models/call_member.dart';
|
|
|
|
/// Call members list
|
|
///
|
|
/// @author Pierre Hubert
|
|
|
|
class CallMembersList extends AbstractList<CallMember> {
|
|
/// Get the IDs of the users in this list
|
|
Set<int> get usersID => this.map((f) => f.id).toSet();
|
|
|
|
/// Remove a specific member from this list
|
|
void removeUser(int userID) => this.removeWhere((f) => f.id == userID);
|
|
}
|