chore: Update matrix SDK

This commit is contained in:
Krille Fear 2022-10-12 13:31:29 +02:00
commit 4f051a1f60
3 changed files with 12 additions and 2 deletions

View file

@ -209,4 +209,14 @@ class VoipPlugin with WidgetsBindingObserver implements WebRTCDelegate {
// TODO: implement cloneStream
throw UnimplementedError();
}
@override
// TODO: implement canHandleNewCall
bool get canHandleNewCall =>
voip.currentCID == null && voip.currentGroupCID == null;
@override
void handleMissedCall(CallSession session) {
// TODO: implement handleMissedCall
}
}