DependencyGraphMetrics constructor

const DependencyGraphMetrics({
  1. required int maxDepth,
  2. required int transitiveCount,
  3. required int directDependents,
  4. required List<List<String>> paths,
  5. required double centrality,
})

Creates graph metrics for a dependency.

Implementation

const DependencyGraphMetrics({
  required this.maxDepth,
  required this.transitiveCount,
  required this.directDependents,
  required this.paths,
  required this.centrality,
});