UnauthorizedFailure constructor

const UnauthorizedFailure({
  1. String? message,
  2. int? code,
})

Implementation

const UnauthorizedFailure({
  super.message,
  super.code,
});