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