AttackPathEdge.fromJson constructor

AttackPathEdge.fromJson(
  1. Map json_
)

Implementation

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