UnauthorizedException constructor

UnauthorizedException(
  1. String message, {
  2. int? status,
})

Implementation

UnauthorizedException(String message, {int? status})
  : super(message, "Unauthorized: ", status: status ?? 401);