AuthException.unauthorized constructor

AuthException.unauthorized()

Implementation

factory AuthException.unauthorized() {
  return AuthException(
    message: 'You do not have permission for this operation',
    code: 'UNAUTHORIZED',
  );
}