Joins the call in the Chat identified by the id.
Future<void> joinCall() async { try { await _callService.join(id, withVideo: false); } on JoinChatCallException catch (e) { MessagePopup.error(e); } }