removeCredentials method

  1. @override
Future<void> removeCredentials(
  1. ChatId chatId,
  2. ChatItemId callId
)
override

Removes the ChatCallCredentials of an OngoingCall identified by the provided chatId and callId.

Implementation

@override
Future<void> removeCredentials(ChatId chatId, ChatItemId callId) async {
  Log.debug('removeCredentials($callId)', '$runtimeType');

  await _chatCredentialsProvider.delete(chatId);
  await _callCredentialsProvider.delete(callId);
}