getCredentials method

  1. @override
Future<ChatCallCredentials> getCredentials(
  1. ChatItemId callId
)
override

Returns the ChatCallCredentials for an OngoingCall identified by the provided callId.

Implementation

@override
Future<ChatCallCredentials> getCredentials(ChatItemId callId) async {
  Log.debug('getCredentials($callId)', '$runtimeType');

  ChatCallCredentials? creds = await _callCredentialsProvider.read(callId);
  if (creds == null) {
    creds = ChatCallCredentials(const Uuid().v4());
    _callCredentialsProvider.upsert(callId, creds);
  }

  return creds;
}