upsert method

Future<void> upsert(
  1. ChatId id,
  2. ChatCallCredentials credentials
)

Creates or updates the provided credentials in the database.

Implementation

Future<void> upsert(ChatId id, ChatCallCredentials credentials) async {
  _cache[id] = credentials;

  await safe((db) async {
    await db
        .into(db.chatCredentials)
        .insertReturning(
          credentials.toDb(id),
          mode: InsertMode.insertOrReplace,
        );
  });

  _cache.remove(id);
}