clearAll method
Clear all data (testing only)
Implementation
@override
Future clearAll() async {
var txn = _idbDatabase.transaction([
idbInfoStore,
idbEntryStore,
], idbModeReadWrite);
await txn.objectStore(idbInfoStore).clear();
await txn.objectStore(idbEntryStore).clear();
await txn.completed;
}