authToken property

  1. @Deprecated('Never populated; authenticate per request. Removed in 3.0.')
String? authToken
getter/setter pair

Deprecated: never assigned by this package, and nothing reads it.

It was consulted as a fallback token source, but no code path ever set it, so the branch could not fire. Populating it would mean a session that authenticated once stays authenticated for every later request on it — wrong wherever one connection carries requests for different users, which is the case per-request identity exists to serve. The read was removed rather than made to work.

Implementation

@Deprecated('Never populated; authenticate per request. Removed in 3.0.')
String? authToken;