unauthorized property

AuthError unauthorized
getter/setter pair

Error indicating unauthorized access.

Returned when the user doesn't have permission for the action.

Implementation

static AuthError unauthorized = AuthError(
  code: 'UNAUTHORIZED',
  message: 'You are not authorized to perform this action',
);