remove method

  1. @override
void remove (String name, Object value)

Removes a specific value for a header name. Some headers have system supplied values and for these the system supplied values will still be added to the collection of values for the header.

Implementation

@override
void remove(String name, Object value) {
  final lcName = name.toLowerCase();

  if (_data.containsKey(lcName)) {
    _data[lcName].remove(value);
  }
}