earlyHints constant

HttpStatus const earlyHints

103 EARLY_HINTS.

An informational status code indicating that the server is likely to send a final response with the headers included in this informational response, but is still processing the request. This allows the client to start processing the headers early.

RFC 8297: https://tools.ietf.org/html/rfc8297

Implementation

static const HttpStatus earlyHints = HttpStatus._(
  code: 103,
  name: 'Early Hints',
  description:
      'Server is likely to send a final response with the included headers.',
);