attrs method

ClientContext attrs(
  1. dynamic key,
  2. List<String> values
)

Allows to set a Custom context attribute with a list of values when using rollout strategy with Custom rule. @param key Name of the Custom rule @param values Values of the Custom rule returns ClientContext

Implementation

ClientContext attrs(key, List<String> values) {
  _attributes[key] = values;
  return this;
}