removeValue method

void removeValue(
  1. String propertyName,
  2. String propertyValue
)

Reduces property named propertyName.

Removing propertyValue not already included in the state has no effect and does not error

Implementation

void removeValue(String propertyName, String propertyValue) {
  userPropertiesAgent?.removeUserPropertyValue(propertyName, propertyValue);
}