operator [] method

List<String>? operator [](
  1. String key
)

Easily index into the headers map.

Implementation

List<String>? operator [](String key) {
  return _headers[key];
}