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