accessToken property
      
      String?
      get
      accessToken
      
    
    
This is the access token for the matrix client. When it is undefined, then the user needs to sign in first.
Implementation
String? get accessToken => bearerToken;
      
      set
      accessToken
      (String? token) 
      
    
    
    
Implementation
set accessToken(String? token) => bearerToken = token;