sessionId property

Future<String?> sessionId

Returns the identifier (string UUIDv4) for the session.

All trackers on Web share the same session.

Implementation

Future<String?> get sessionId async {
  return await Snowplow.getSessionId(tracker: namespace);
}