Response.InternalServerError constructor

Response.InternalServerError([
  1. String? body
])

Constructor for 500 internal server error responses.

Implementation

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