closeSession method

void closeSession(
  1. String sessionId
)

Implementation

void closeSession(String sessionId) {
  var sess = _sessions[sessionId];
  if (sess != null) {
    _closeSession(sess);
  }
}