Response.Unauthorized constructor

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

Constructor for 401 unauthorized responses.

Implementation

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