$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,
      );