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

Start streaming

This commit is contained in:
2020-04-22 18:29:00 +02:00
parent a16618bb51
commit b9a329c8f0
2 changed files with 43 additions and 0 deletions

View File

@ -62,4 +62,8 @@ class CallsHelper {
"type": "CANDIDATE",
"data": jsonEncode(candidate.toMap())
});
/// Mark ourselves as ready to stream to other peers
static Future<void> markPeerReady(int callID) async =>
await ws("calls/mark_ready", {"callID": callID});
}