1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2025-09-18 21:38:48 +00:00

Handles peer ready & peer destroyed streams events

This commit is contained in:
2020-04-20 14:58:23 +02:00
parent 0f99e807f8
commit 99ecc399ee
5 changed files with 61 additions and 6 deletions

View File

@@ -11,4 +11,7 @@ class CallMembersList extends AbstractList<CallMember> {
/// Remove a specific member from this list
void removeUser(int userID) => this.removeWhere((f) => f.id == userID);
/// Get the connection of a specific user
CallMember getUser(int userID) => this.firstWhere((f) => f.id == userID);
}