AttackPathEdge.fromJson constructor

AttackPathEdge.fromJson(
  1. Map json_
)

Implementation

AttackPathEdge.fromJson(core.Map json_)
    : this(
        destination: json_.containsKey('destination')
            ? json_['destination'] as core.String
            : null,
        source: json_.containsKey('source')
            ? json_['source'] as core.String
            : null,
      );