privateAttributeNames method Null safety

LDConfigBuilder privateAttributeNames(
  1. Set<String> privateAttributeNames
)

Sets a Set of private attributes to never include the values for in analytics events.

Implementation

LDConfigBuilder privateAttributeNames(Set<String> privateAttributeNames) {
  this._privateAttributeNames = privateAttributeNames;
  return this;
}