unsetSession method

void unsetSession(
  1. String key
)

Implementation

void unsetSession(String key){
  _sessions.remove(key);
  if(initialized){
    removedSessions.add(key);
  }
}