sessionId property

Future<String?> get 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 Conviva.getSessionId(tracker: "CAT");
}