upsertView method
- ChatId chatId,
- 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)');
}