UnauthorisedResponse constructor

UnauthorisedResponse(
  1. {required UnauthorisedStatus status,
  2. Exception? error,
  3. dynamic exception}
)

Implementation

UnauthorisedResponse({
  required this.status,
  this.error,
  this.exception,
});