clientId property

String clientId

A unique identifier associated with an application registered with the portal that assists with client/server OAuth authentication.

Implementation

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