UnauthorizedResponse constructor

UnauthorizedResponse({
  1. required int timestamp,
  2. required int statusCode,
  3. required String error,
  4. required String message,
})

Constructs an UnauthorizedResponse instance with all required fields.

Implementation

UnauthorizedResponse({
  required this.timestamp,
  required this.statusCode,
  required this.error,
  required this.message,
});