Unauthenticated constructor

const Unauthenticated({
  1. String? message,
  2. ErrorType errorType = ErrorType.unauthenticated,
})

Implementation

const Unauthenticated({
  String? message,
  ErrorType errorType = ErrorType.unauthenticated,
}) : super(errorType, message: message);