redialChatCallMember method
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);
}
}