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