call method
- bool withVideo
Starts an OngoingCall in this Chat withVideo
or without.
Implementation
Future<void> call(bool withVideo) async {
try {
await _callService.call(user!.user.value.dialog, 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);
}
}