removeSession method

bool removeSession(
  1. String repId
)

Session removal

Implementation

bool removeSession(String repId) {
  if (sessionExists(repId)) {
    _sessionMap.remove(repId);
    return true;
  }

  return false;
}