accessToken property

String accessToken

The access token to be used to make an authenticated request.

Implementation

String get accessToken {
  final stringHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_OAuthApplicationTokenInfo_getAccessToken(
      _handle,
      errorHandler,
    );
  });
  return stringHandle.toDartString();
}