clearSession method

void clearSession(
  1. String session
)

Removes all dependency objects registered under the given session name.

Implementation

void clearSession(final String session) {
  _dependencyMap.removeBySession(session);
  notifyObservers();
}