removeAll method

void removeAll(
  1. String name
)

Removes all values for the specified header name

Implementation

void removeAll(String name) {
  headers.remove(name);
}