OAuth2ClientRegistrationTemplate constructor

OAuth2ClientRegistrationTemplate({
  1. required String providerId,
  2. required OAuth2MapperConfig mapperConfig,
  3. required String authorizationUri,
  4. required String accessTokenUri,
  5. required List<String> scope,
  6. required String userNameAttributeName,
  7. required String clientAuthenticationMethod,
  8. String? userInfoUri,
  9. String? jwkSetUri,
  10. String? comment,
  11. String? loginButtonIcon,
  12. String? loginButtonLabel,
  13. String? helpLink,
})

Implementation

OAuth2ClientRegistrationTemplate(
    {required this.providerId,
    required this.mapperConfig,
    required this.authorizationUri,
    required this.accessTokenUri,
    required this.scope,
    required this.userNameAttributeName,
    required this.clientAuthenticationMethod,
    this.userInfoUri,
    this.jwkSetUri,
    this.comment,
    this.loginButtonIcon,
    this.loginButtonLabel,
    this.helpLink});