getAllSessions method

List<AuthUserSession> getAllSessions()

Returns an unmodifiable copy of all in-memory sessions.

Implementation

List<AuthUserSession> getAllSessions() {
  return List<AuthUserSession>.unmodifiable(_memorySessions);
}