upsertBulk method

Future<Iterable<DtoBlocklistRecord>> upsertBulk(
  1. Iterable<DtoBlocklistRecord> records
)

Creates or updates the provided records in the database.

Implementation

Future<Iterable<DtoBlocklistRecord>> upsertBulk(
  Iterable<DtoBlocklistRecord> records,
) async {
  await safe((db) async {
    await db.batch((batch) {
      for (var record in records) {
        final BlocklistRow row = record.toDb();
        batch.insert(db.blocklist, row, onConflict: DoUpdate((_) => row));
      }
    });
  }, tag: 'blocklist.upsertBulk(${records.length} items)');

  return records;
}