stopSession method

void stopSession()

Stops the current session. A new session will start in response to a call to startView, addAction, or startAction. If the session is started because of a call to addAction or startAction, the last know view is restarted in the new session.

Implementation

void stopSession() {
  wrap('rum.stopSession', logger, null, () {
    return _platform.stopSession();
  });
}