preferPrivateWebBrowserSession property

bool preferPrivateWebBrowserSession

A Boolean value indicating whether the OAuth login session should ask the browser for a private authentication session.

Implementation

bool get preferPrivateWebBrowserSession {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore
        .RT_OAuthUserConfiguration_getPreferPrivateWebBrowserSession(
      _handle,
      errorHandler,
    );
  });
}