removeSessionProperty static method
Remove a specific property by key.
Example:
Pulse.removeSessionProperty('userId');
Implementation
static void removeSessionProperty(String key) {
_properties.remove(key);
}
Remove a specific property by key.
Example:
Pulse.removeSessionProperty('userId');
static void removeSessionProperty(String key) {
_properties.remove(key);
}