delete method

Future<void> delete()

Deletes the currently active UserId account stored in the database.

Implementation

Future<void> delete() async {
  _userId = null;

  await safe((db) async {
    await db.delete(db.accounts).go();
  }, tag: 'account.delete()');
}