notImplemented constant

HttpStatus const notImplemented

501 NOT IMPLEMENTED.

The server does not support the functionality required to fulfill the request.

This is the appropriate response when the server does not recognize the request method and is not capable of supporting it for any resource.

A 501 response is cacheable by default; i.e., unless otherwise indicated by the method definition or explicit cache controls.

Implementation

static const HttpStatus notImplemented = HttpStatus._(
  code: HttpStatusCode.notImplemented,
  name: 'Not Implemented',
  description: 'The server does not support the functionality required to '
      'fulfill the request.',
);