setValues method

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

Exactly set, or replace if any previously exists, any state for the property.

Empty list or null propertyValues clears the property state.

Implementation

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