clear method
Deletes all the download paths stored in the database.
Implementation
Future<void> clear() async {
await safe((db) async {
await db.delete(db.downloads).go();
});
}
Deletes all the download paths stored in the database.
Future<void> clear() async {
await safe((db) async {
await db.delete(db.downloads).go();
});
}