OAuth2Configuration constructor

OAuth2Configuration({
  1. List<String> authorizedOriginURLs,
  2. List<String> authorizedRedirectURLs,
  3. Oauth2AuthorizedURLValidationPolicy authorizedURLValidationPolicy,
  4. ClientAuthenticationPolicy clientAuthenticationPolicy,
  5. String clientId,
  6. String clientSecret,
  7. bool debug,
  8. String deviceVerificationURL,
  9. Set<GrantType> enabledGrants,
  10. bool generateRefreshTokens,
  11. LogoutBehavior logoutBehavior,
  12. String logoutURL,
  13. ProofKeyForCodeExchangePolicy proofKeyForCodeExchangePolicy,
  14. bool requireClientAuthentication,
  15. bool requireRegistration,
})

Implementation

OAuth2Configuration(
    {this.authorizedOriginURLs,
    this.authorizedRedirectURLs,
    this.authorizedURLValidationPolicy,
    this.clientAuthenticationPolicy,
    this.clientId,
    this.clientSecret,
    this.debug,
    this.deviceVerificationURL,
    this.enabledGrants,
    this.generateRefreshTokens,
    this.logoutBehavior,
    this.logoutURL,
    this.proofKeyForCodeExchangePolicy,
    this.requireClientAuthentication,
    this.requireRegistration});