ThreatPreventionProfile.fromJson constructor
ThreatPreventionProfile.fromJson(
- Map json_
Implementation
ThreatPreventionProfile.fromJson(core.Map json_)
: this(
antivirusOverrides: (json_['antivirusOverrides'] as core.List?)
?.map((value) => AntivirusOverride.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
severityOverrides: (json_['severityOverrides'] as core.List?)
?.map((value) => SeverityOverride.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
threatOverrides: (json_['threatOverrides'] as core.List?)
?.map((value) => ThreatOverride.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
);