removeCredentials method
- ChatId chatId,
- ChatItemId callId
Removes the ChatCallCredentials of an OngoingCall identified by the
provided id
.
Implementation
Future<void> removeCredentials(ChatId chatId, ChatItemId callId) {
Log.debug('removeCredentials($chatId, $callId)', '$runtimeType');
return _callsRepo.removeCredentials(chatId, callId);
}