transferCredentials method

void transferCredentials(
  1. ChatId chatId,
  2. ChatItemId callId
)

Copies the ChatCallCredentials from the provided Chat and links them to the specified OngoingCall.

Implementation

void transferCredentials(ChatId chatId, ChatItemId callId) {
  Log.debug('transferCredentials($chatId, $callId)', '$runtimeType');
  _callsRepo.transferCredentials(chatId, callId);
}