ThreatOverride.fromJson constructor

ThreatOverride.fromJson(
  1. Map json_
)

Implementation

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