closeSession method

void closeSession()

Implementation

void closeSession() {
  var sess = _sessions[_selfId];
  if (sess != null) {
    _logger.d("Session end success");
    _closeSession(sess);
  } else {
    _logger.d("Session end failed");
  }
}