expectationFailed constant

HttpStatus const expectationFailed

417 EXPECTATION FAILED.

The expectation given in the request's Expect header field could not be met by at least one of the inbound servers.

Implementation

static const HttpStatus expectationFailed = HttpStatus._(
  code: HttpStatusCode.expectationFailed,
  name: 'Expectation Failed',
  description:
      'The expectation given in the request\'s Expect header field could '
      'not be met by at least one of the inbound servers.',
);