totalEdges property

int get totalEdges

Implementation

int get totalEdges {
  int count = 0;
  for (final targets in _imports.values) {
    count += targets.length;
  }
  return count;
}