getSessionProperty static method
Get a custom property value by key.
Returns null if the property doesn't exist.
Example:
final userId = Pulse.getSessionProperty('userId');
Implementation
static dynamic getSessionProperty(String key) {
return _properties[key];
}