redialChatCallMember method

Future<void> redialChatCallMember(
  1. UserId userId
)

Redials the User identified by its userId.

Implementation

Future<void> redialChatCallMember(UserId userId) async {
  if (userId == me) {
    await _callService.join(chatId);
    return;
  }

  try {
    await _callService.redialChatCallMember(chatId, userId);
  } on RedialChatCallMemberException catch (e) {
    MessagePopup.error(e);
  } catch (e) {
    MessagePopup.error(e);
    rethrow;
  }
}