removeValues method

void removeValues(
  1. String propertyName,
  2. List<String> propertyValues
)

Reduce property named propertyName.

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

Implementation

void removeValues(String propertyName, List<String> propertyValues) {
  userPropertiesAgent?.removeUserPropertyValues(propertyName, propertyValues);
}