clientId property
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_OAuthApplicationCredential_getClientId(
_handle, errorHandler);
});
return stringHandle.toDartString();
}