Response.Unauthorized constructor

Response.Unauthorized([
  1. dynamic body
])

Constructor for 401 unauthorized responses.

Implementation

Response.Unauthorized([dynamic body])
    : this(HttpStatus.unauthorized, body: body);