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