Check if a property exists.
Example:
if (Pulse.hasSessionProperty('userId')) { print('User ID is set'); }
static bool hasSessionProperty(String key) { return _properties.containsKey(key); }