authorizationCode property

String authorizationCode

An authorization code to generate the OAuth token.

Implementation

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