gatewayTimeout constant

HttpStatus const gatewayTimeout

504 GATEWAY TIMEOUT.

The server, while acting as a gateway or proxy, did not receive a timely response from an upstream server it needed to access in order to complete the request.

Implementation

static const HttpStatus gatewayTimeout = HttpStatus._(
  code: HttpStatusCode.gatewayTimeout,
  name: 'Gateway Timeout',
  description:
      'The server, while acting as a gateway or proxy, did not receive '
      'a timely response from an upstream server it needed to access '
      'in order to complete the request.',
);