AuditLogConfig.fromJson constructor

AuditLogConfig.fromJson(
  1. Map json_
)

Implementation

AuditLogConfig.fromJson(core.Map json_)
  : this(
      exemptedMembers:
          (json_['exemptedMembers'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      logType: json_['logType'] as core.String?,
    );