$AuditLogConfig.fromJson constructor

$AuditLogConfig.fromJson(
  1. 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,
        logType: json_.containsKey('logType')
            ? json_['logType'] as core.String
            : null,
      );