addEntries method
Add entries in the database.
Implementation
@override
Future addEntries(List<jdb.JdbWriteEntry> entries) async {
final entriesEncoded = await encodeEntries(entries);
var txn = _idbDatabase.transaction([
idbEntryStore,
idbInfoStore,
], idbModeReadWrite);
// var lastEntryId =
await _txnAddEntries(txn, entriesEncoded);
await txn.completed;
/*
don't notify - this is mainly for testing
*/
}