joinCall method

Future<void> joinCall()

Joins the call in the Chat identified by the id.

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