KeyAccessJustificationsPolicyConfig.fromJson constructor
KeyAccessJustificationsPolicyConfig.fromJson(
- Map json_
Implementation
KeyAccessJustificationsPolicyConfig.fromJson(core.Map json_)
: this(
defaultKeyAccessJustificationPolicy:
json_.containsKey('defaultKeyAccessJustificationPolicy')
? KeyAccessJustificationsPolicy.fromJson(
json_['defaultKeyAccessJustificationPolicy']
as core.Map<core.String, core.dynamic>,
)
: null,
name: json_['name'] as core.String?,
);