ThreatOverride.fromJson constructor

ThreatOverride.fromJson(
  1. Map json_
)

Implementation

ThreatOverride.fromJson(core.Map json_)
  : this(
      action: json_['action'] as core.String?,
      threatId: json_['threatId'] as core.String?,
      type: json_['type'] as core.String?,
    );