add method

void add(
  1. String type,
  2. String dependency
)

Implementation

void add(String type, String dependency) {
  _dependencies.putIfAbsent(type, () => {}).add(dependency);
}