mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-19 08:15:16 +00:00
Can request call offer
This commit is contained in:
@ -14,4 +14,8 @@ class CallMembersList extends AbstractList<CallMember> {
|
||||
|
||||
/// Get the connection of a specific user
|
||||
CallMember getUser(int userID) => this.firstWhere((f) => f.userID == userID);
|
||||
|
||||
/// Extract ready peers from this list
|
||||
CallMembersList get readyPeers =>
|
||||
CallMembersList()..addAll(where((f) => f.status == MemberStatus.READY));
|
||||
}
|
||||
|
Reference in New Issue
Block a user