useAuth property

bool? get useAuth

Per-request authentication override.

  • null — inherits Connector.useAuth (default behaviour).
  • false — disables auth for this request regardless of the connector setting. Use for endpoints that must be called unauthenticated, such as a login or token-refresh endpoint.
  • true — forces auth even if Connector.useAuth is false.

Implementation

bool? get useAuth => null;