privateAttributes method Null safety

LDConfigBuilder privateAttributes(
  1. Set<String> privateAttributes
)

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

Implementation

LDConfigBuilder privateAttributes(Set<String> privateAttributes) {
  this._privateAttributes = privateAttributes;
  return this;
}