logout method

Future<bool> logout()

Returns a valid AccessToken form the authManager.

Could throw everything the implementation of AuthenticationManager.getAccessToken could throw.

Implementation

Future<bool> logout() async {
  return authManager.logout();
}