operator [] method

  1. @override
List<String> operator [] (String name)

Returns the list of values for the header named name. If there is no header with the provided name, null will be returned.

Implementation

@override
List<String> operator [](String name) => _data[name.toLowerCase()];