removeSessionProperty static method

void removeSessionProperty(
  1. String key
)

Remove a specific property by key.

Example:

Pulse.removeSessionProperty('userId');

Implementation

static void removeSessionProperty(String key) {
  _properties.remove(key);
}