sessionIndex property

Future<int?> sessionIndex

Returns the index (number) of the current session for this user.

All trackers on Web share the same session.

Implementation

Future<int?> get sessionIndex async {
  return await Snowplow.getSessionIndex(tracker: namespace);
}