redialChatCallMember method

Future<void> redialChatCallMember(
  1. ChatId chatId,
  2. UserId memberId
)

Redials a User who left or declined the ongoing ChatCall in the specified Chat-group by the authenticated MyUser.

Implementation

Future<void> redialChatCallMember(ChatId chatId, UserId memberId) async {
  Log.debug('redialChatCallMember($chatId, $memberId)', '$runtimeType');

  if (_callsRepo.contains(chatId)) {
    await _callsRepo.redialChatCallMember(chatId, memberId);
  }
}