censorBodyElements method

Censors censorBodyElements(
  1. List<CensorElement> elements
)

Add the given element to the list of elements to censor from request bodies.

Implementation

Censors censorBodyElements(List<CensorElement> elements) {
  _bodyElementsToCensor.addAll(elements);
  return this;
}