removeAll method

void removeAll(
  1. String name
)

Removes all values for the specified header name.

Implementation

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