dependentsInWorkspace property

Map<String, Package> dependentsInWorkspace
latefinal

The packages that depend on this package as a dependency.

Implementation

late final Map<String, Package> dependentsInWorkspace = {
  for (final entry in _packageMap.entries)
    if (entry.value.dependenciesInWorkspace.containsKey(name))
      entry.key: entry.value,
};