call method

Future<void> call(
  1. ChatId id, [
  2. bool withVideo = false
])

Starts an OngoingCall in the Chat identified by the provided id.

Implementation

Future<void> call(ChatId id, [bool withVideo = false]) async {
  try {
    await _callService.call(id, withVideo: withVideo);
  } on JoinChatCallException catch (e) {
    MessagePopup.error(e);
  } on CallAlreadyJoinedException catch (e) {
    MessagePopup.error(e);
  } on CallAlreadyExistsException catch (e) {
    MessagePopup.error(e);
  } on CallIsInPopupException catch (e) {
    MessagePopup.error(e);
  }
}