ApigatewayAuditConfig.fromJson constructor

ApigatewayAuditConfig.fromJson(
  1. Map json_
)

Implementation

ApigatewayAuditConfig.fromJson(core.Map json_)
    : this(
        auditLogConfigs: (json_['auditLogConfigs'] as core.List?)
            ?.map((value) => ApigatewayAuditLogConfig.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
        service: json_['service'] as core.String?,
      );