1
0
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:
2020-04-20 15:50:01 +02:00
parent 73c7fa8807
commit 80f05cb008
3 changed files with 22 additions and 3 deletions

View File

@ -34,4 +34,8 @@ class CallsHelper {
))
.toList()
.cast<CallMember>());
/// Request an offer to access another peer's stream
static Future<void> requestOffer(int callID, int peerID) async =>
await ws("calls/request_offer", {"callID": callID, "peerID": peerID});
}