moveCredentials method

  1. @override
Future<void> moveCredentials(
  1. ChatItemId callId,
  2. ChatItemId newCallId,
  3. ChatId chatId,
  4. 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());
  }
}