accessToken property

String? accessToken

This is the access token for the sdn client. When it is undefined, then the user needs to sign in first.

Implementation

String? get accessToken => bearerToken;
void accessToken=(String? token)

Implementation

set accessToken(String? token) => bearerToken = token;