moveCredentials method
- ChatItemId callId,
- ChatItemId newCallId,
- ChatId chatId,
- ChatId newChatId,
override
Moves the ChatCallCredentials from the callId
to the newCallId
.
Implementation
@override
Future<void> moveCredentials(
ChatItemId callId,
ChatItemId newCallId,
ChatId chatId,
ChatId newChatId,
) async {
Log.debug(
'moveCredentials($callId, $newCallId, $chatId, $newChatId)',
'$runtimeType',
);
final ChatCallCredentials? chatCreds = await _chatCredentialsProvider.read(
chatId,
);
final ChatCallCredentials? callCreds = await _callCredentialsProvider.read(
callId,
);
if (chatCreds != null) {
_chatCredentialsProvider.delete(chatId);
_chatCredentialsProvider.upsert(newChatId, chatCreds.copyWith());
}
if (callCreds != null) {
_callCredentialsProvider.delete(callId);
_callCredentialsProvider.upsert(newCallId, callCreds.copyWith());
}
}