addAll method

void addAll(
  1. String type,
  2. Set<String> dependencies
)

Implementation

void addAll(String type, Set<String> dependencies) {
  _dependencies.putIfAbsent(type, () => {}).addAll(dependencies);
}