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

Handles join / leave events

This commit is contained in:
2020-04-20 14:24:35 +02:00
parent 9154fe47e1
commit 08d357fc72
4 changed files with 44 additions and 1 deletions

View File

@ -12,7 +12,7 @@ class CallMember {
const CallMember({
@required this.id,
@required this.status,
this.status = MemberStatus.JOINED,
}) : assert(id != null),
assert(status != null);
}