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($callId)', '$runtimeType');
return _callRepo.removeCredentials(chatId, callId);
}