AngelHttpException.methodNotAllowed constructor
AngelHttpException.methodNotAllowed({
- String message = '405 Method Not Allowed',
Throws a 405 Method Not Allowed error.
Implementation
factory AngelHttpException.methodNotAllowed({
String message = '405 Method Not Allowed',
}) => AngelHttpException(message: message, statusCode: 405);