GraphScanResult<T> constructor

GraphScanResult<T>(
  1. Graph<T> graph,
  2. List<T> roots,
  3. NodeMatcher<T> targetMatcher,
  4. List<List<Node<T>>> paths, {
  5. required bool findAll,
  6. required Duration time,
  7. required Duration resolvePathsTime,
})

Implementation

GraphScanResult(this.graph, this.roots, this.targetMatcher, this.paths,
    {required this.findAll,
    required this.time,
    required this.resolvePathsTime});