AuditLogConfig.fromJson constructor
AuditLogConfig.fromJson(
- Map json_
Implementation
AuditLogConfig.fromJson(core.Map json_)
: this(
exemptedMembers: json_.containsKey('exemptedMembers')
? (json_['exemptedMembers'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
ignoreChildExemptions: json_.containsKey('ignoreChildExemptions')
? json_['ignoreChildExemptions'] as core.bool
: null,
logType: json_.containsKey('logType')
? json_['logType'] as core.String
: null,
);