getCredentials method
- 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;
}