Deletes the currently active UserId account stored in the database.
Future<void> delete() async { _userId = null; await safe((db) async { await db.delete(db.accounts).go(); }, tag: 'account.delete()'); }