clear method
Deletes all the DtoBlocklistRecords stored in the database.
Implementation
Future<void> clear() async {
_cache.clear();
await safe((db) async {
await db.delete(db.blocklist).go();
}, tag: 'blocklist.clear()');
}
Deletes all the DtoBlocklistRecords stored in the database.
Future<void> clear() async {
_cache.clear();
await safe((db) async {
await db.delete(db.blocklist).go();
}, tag: 'blocklist.clear()');
}