GetAuthMetadataResponse constructor

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

Implementation

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