GetAuthMetadataResponse constructor

GetAuthMetadataResponse({
  1. required Uri authorizationEndpoint,
  2. required List<String> codeChallengeMethodsSupported,
  3. required List<String> grantTypesSupported,
  4. required Uri issuer,
  5. List<String>? promptValuesSupported,
  6. required Uri registrationEndpoint,
  7. required List<String> responseModesSupported,
  8. required List<String> responseTypesSupported,
  9. required Uri revocationEndpoint,
  10. required Uri tokenEndpoint,
})

Implementation

GetAuthMetadataResponse({
  required this.authorizationEndpoint,
  required this.codeChallengeMethodsSupported,
  required this.grantTypesSupported,
  required this.issuer,
  this.promptValuesSupported,
  required this.registrationEndpoint,
  required this.responseModesSupported,
  required this.responseTypesSupported,
  required this.revocationEndpoint,
  required this.tokenEndpoint,
});