allPaths property

Future<List<List<Node<T>>>> allPaths

Returns all the paths from roots to allLeaves;

Implementation

Future<List<List<Node<T>>>> get allPaths async {
  var roots = this.roots.toListOfValues();
  var leaves = allLeaves.toListOfValues();

  var result = await scanPathsFromMany(roots, leaves, findAll: true);
  return result.paths;
}