ListEffectiveEventThreatDetectionCustomModulesResponse.fromJson constructor
ListEffectiveEventThreatDetectionCustomModulesResponse.fromJson(
- Map json_
Implementation
ListEffectiveEventThreatDetectionCustomModulesResponse.fromJson(
core.Map json_,
) : this(
effectiveEventThreatDetectionCustomModules:
(json_['effectiveEventThreatDetectionCustomModules'] as core.List?)
?.map(
(value) => EffectiveEventThreatDetectionCustomModule.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);