GraphState constructor

GraphState({
  1. required HashMap<ID, List<ID>> edges,
  2. required HashMap<ID, (double, double)> coords,
  3. required HashMap<ID, GraphNode> nodes,
  4. required HashMap<ID, ID> parents,
  5. required ID startId,
  6. required ID targetId,
  7. required Status status,
})

Implementation

GraphState({
  required this.edges,
  required this.coords,
  required this.nodes,
  required this.parents,
  required this.startId,
  required this.targetId,
  required this.status,
});