getSessionById method

AuthSession? getSessionById(
  1. String id
)

Get a session by ID

Implementation

AuthSession? getSessionById(String id) {
  return _isar.authSessions.filter().idEqualTo(id).findFirstSync();
}