joinCall method
Joins the call in the Chat identified by the provided id
withVideo
or without.
Implementation
Future<void> joinCall(ChatId id, {bool withVideo = false}) async {
try {
await _callService.join(id, withVideo: withVideo);
} on JoinChatCallException catch (e) {
MessagePopup.error(e);
} on CallAlreadyJoinedException catch (e) {
MessagePopup.error(e);
} on CallDoesNotExistException catch (e) {
MessagePopup.error(e);
} on CallIsInPopupException catch (e) {
MessagePopup.error(e);
}
}