toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (cacheHeader != null) 'cacheHeader': cacheHeader!,
if (claimsSupported != null) 'claims_supported': claimsSupported!,
if (grantTypes != null) 'grant_types': grantTypes!,
if (idTokenSigningAlgValuesSupported != null)
'id_token_signing_alg_values_supported':
idTokenSigningAlgValuesSupported!,
if (issuer != null) 'issuer': issuer!,
if (jwksUri != null) 'jwks_uri': jwksUri!,
if (responseTypesSupported != null)
'response_types_supported': responseTypesSupported!,
if (subjectTypesSupported != null)
'subject_types_supported': subjectTypesSupported!,
};