joinCall method

Future<void> joinCall(
  1. ChatId id, {
  2. bool withVideo = false,
})

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);
  }
}