accessToken property

String accessToken

The access token string.

Implementation

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