PCAuthenticator constructor

PCAuthenticator(
  1. String _issuerUrl,
  2. List<String> _scopes,
  3. String _clientId,
  4. String _query,
  5. int _port
)

Constructor to initialize the PCAuthenticator instance.

Parameters:

  • _issuerUrl: The URL of the OpenID Connect issuer.
  • _scopes: The list of requested scopes during the authorization process.
  • _clientId: The client ID used for authentication.
  • _query: Additional query parameters for the authorization URL.
  • _port: The port number to use during the authorization process.

Implementation

PCAuthenticator