getCurrentSessionId method

Future<String?> getCurrentSessionId()

Get the current active session ID. The session ID will be null if no session is active or if the session has been sampled out.

Implementation

Future<String?> getCurrentSessionId() {
  return wrapAsync('rum.getCurrentSessionId', logger, null,
      () => _platform.getCurrentSessionId());
}