call method

Future<void> call(
  1. bool withVideo
)

Starts a ChatCall in this Chat withVideo or without.

Implementation

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