internalServerError constant

HttpStatus const internalServerError

500 INTERNAL SERVER ERROR.

The server encountered an unexpected condition that prevented it from fulfilling the request.

Implementation

static const HttpStatus internalServerError = HttpStatus._(
  code: HttpStatusCode.internalServerError,
  name: 'Internal Server Error',
  description:
      'The server encountered an unexpected condition that prevented it '
      'from fulfilling the request.',
);