upsertView method

Future<void> upsertView(
  1. ChatId chatId,
  2. ChatItemId chatItemId
)

Creates or updates the a view for the provided chatItemId in chatId.

Implementation

Future<void> upsertView(ChatId chatId, ChatItemId chatItemId) async {
  Log.debug('upsertView($chatId, $chatItemId)', '$runtimeType');

  await safe((db) async {
    final view = ChatItemViewRow(
      chatId: chatId.val,
      chatItemId: chatItemId.val,
    );
    await db
        .into(db.chatItemViews)
        .insert(view, onConflict: DoUpdate((_) => view));
  }, tag: 'chat_item.upsertView($chatId, $chatItemId)');
}