read method

Future<Session?> read(
  1. SessionId id
)

Returns the Session stored in the database by the provided id, if any.

Implementation

Future<Session?> read(SessionId id) async {
  return await safe<Session?>((db) async {
    final stmt = db.select(db.sessions)..where((u) => u.id.equals(id.val));
    final SessionRow? row = await stmt.getSingleOrNull();

    if (row == null) {
      return null;
    }

    return _SessionDb.fromDb(row);
  }, exclusive: false);
}