$IdentityServiceSamlConfig.fromJson constructor
$IdentityServiceSamlConfig.fromJson(
- Map json_
Implementation
$IdentityServiceSamlConfig.fromJson(core.Map json_)
: this(
attributeMapping: (json_['attributeMapping']
as core.Map<core.String, core.dynamic>?)
?.map(
(key, value) => core.MapEntry(
key,
value as core.String,
),
),
groupPrefix: json_['groupPrefix'] as core.String?,
groupsAttribute: json_['groupsAttribute'] as core.String?,
identityProviderCertificates:
(json_['identityProviderCertificates'] as core.List?)
?.map((value) => value as core.String)
.toList(),
identityProviderId: json_['identityProviderId'] as core.String?,
identityProviderSsoUri:
json_['identityProviderSsoUri'] as core.String?,
userAttribute: json_['userAttribute'] as core.String?,
userPrefix: json_['userPrefix'] as core.String?,
);