getHeader method

Record? getHeader([
  1. String? name
])

Get the header of the specified name.

If you don't specify name, you will get an unnamed header.

Implementation

Record? getHeader([String? name]){
  return _headers[name];
}