getSessionProperties static method

Map<String, dynamic> getSessionProperties()

Get all custom properties as a Map.

Returns a copy of the properties map to prevent external modification.

Example:

final allProps = Pulse.getSessionProperties();
print('Current properties: $allProps');

Implementation

static Map<String, dynamic> getSessionProperties() {
  return Map.from(_properties);
}