getSession method

Session? getSession(
  1. String sessionId
)

Get session by ID

Implementation

Session? getSession(String sessionId) {
  return _sessions[sessionId];
}