OIDCDiscoveryDocument class

Constructors

OIDCDiscoveryDocument({String? issuer, String? authorizationEndpoint, String? tokenEndpoint, String? userinfoEndpoint, String? jwksUri, String? registrationEndpoint, List<String> scopesSupported = const [], List<String> responseTypesSupported = const [], List<String> responseModesSupported = const [], List<String> grantTypesSupported = const [], List<String> subjectTypesSupported = const [], List<String> idTokenSigningAlgValuesSupported = const [], List<String> tokenEndpointAuthMethodsSupported = const [], List<String> claimsSupported = const [], List<String> codeChallengeMethodsSupported = const []})
Returns a new OIDCDiscoveryDocument instance.

Properties

authorizationEndpoint String?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
claimsSupported List<String>
getter/setter pair
codeChallengeMethodsSupported List<String>
getter/setter pair
grantTypesSupported List<String>
getter/setter pair
hashCode int
The hash code for this object.
no setteroverride
idTokenSigningAlgValuesSupported List<String>
getter/setter pair
issuer String?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
jwksUri String?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
registrationEndpoint String?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
responseModesSupported List<String>
getter/setter pair
responseTypesSupported List<String>
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
scopesSupported List<String>
getter/setter pair
subjectTypesSupported List<String>
getter/setter pair
tokenEndpoint String?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair
tokenEndpointAuthMethodsSupported List<String>
getter/setter pair
userinfoEndpoint String?
Please note: This property should have been non-nullable! Since the specification file does not include a default value (using the "default:" property), however, the generated source code must fall back to having a nullable type. Consider adding a "default:" property in the specification file to hide this note.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
override

Static Methods

fromJson(dynamic value) OIDCDiscoveryDocument?
Returns a new OIDCDiscoveryDocument instance and imports its values from value if it's a Map, null otherwise.
listFromJson(dynamic json, {bool growable = false}) List<OIDCDiscoveryDocument>
mapFromJson(dynamic json) Map<String, OIDCDiscoveryDocument>
mapListFromJson(dynamic json, {bool growable = false}) Map<String, List<OIDCDiscoveryDocument>>

Constants

requiredKeys → const Set<String>
The list of required keys that must be present in a JSON.