GoogleAuthenticator constructor

GoogleAuthenticator(
  1. String? identifier,
  2. String? clientId,
  3. String? clientSecret,
  4. String? tokenUrl,
  5. String? baseUrl,
  6. String? redirectUrl,
  7. List<String>? scopes,
)

Implementation

GoogleAuthenticator(String? identifier, String? clientId, String? clientSecret,
    String? tokenUrl, String? baseUrl, String? redirectUrl, List<String>? scopes)
    : super(identifier, clientId, clientSecret, tokenUrl, baseUrl,
          redirectUrl) {
  this.scope = scopes;
  useEmbeddedBrowser = false;
  // Set this to false to remove Apple's user consent dialog
  useSSO = true;
  usePkce = true;
}