token property
inherited
Get the current authentication token.
Implementation
String? get token => _token;
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;
}