responseHeadersNeverPass constant

List<String> const responseHeadersNeverPass = const ['content-type', 'x-content-type-options', 'x-frame-options', 'x-xss-protection']

Headers in the response which are never passed through to the client.

Implementation

static const List<String> responseHeadersNeverPass = [
  'content-type',
  'x-content-type-options',
  'x-frame-options',
  'x-xss-protection'
]