joinCall method
Implementation
Future<void> joinCall() async {
try {
await _callService.join(id, withVideo: false);
} on JoinChatCallException catch (e) {
MessagePopup.error(e);
} on CallDoesNotExistException catch (e) {
MessagePopup.error(e);
} on CallIsInPopupException catch (e) {
MessagePopup.error(e);
} on CallAlreadyJoinedException catch (e) {
MessagePopup.error(e);
}
}