Response.InternalServerError constructor

Response.InternalServerError([
  1. dynamic body
])

Constructor for 500 internal server error responses.

Implementation

Response.InternalServerError([dynamic body])
    : this(HttpStatus.internalServerError, body: body);