ListEventThreatDetectionCustomModulesResponse.fromJson constructor

ListEventThreatDetectionCustomModulesResponse.fromJson(
  1. Map json_
)

Implementation

ListEventThreatDetectionCustomModulesResponse.fromJson(core.Map json_)
    : this(
        eventThreatDetectionCustomModules:
            (json_['eventThreatDetectionCustomModules'] as core.List?)
                ?.map((value) => EventThreatDetectionCustomModule.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList(),
        nextPageToken: json_['nextPageToken'] as core.String?,
      );