token property

String? get token
inherited

Get the current authentication token.

Implementation

String? get token => _token;
set token (String? value)
inherited

Update the authentication token.

This will be used for all subsequent RPC calls.

Implementation

set token(String? value) {
  _token = value;
  _tokenSource = value != null ? 'manual' : null;
}