delete method

Future<void> delete(
  1. SessionId id
)

Deletes the Session identified by the provided id from the database.

Implementation

Future<void> delete(SessionId id) async {
  await safe((db) async {
    final stmt = db.delete(db.sessions)..where((e) => e.id.equals(id.val));
    await stmt.go();
  });
}