lookupPossibleDeps function
Set<DependencyConfig>
lookupPossibleDeps(
- InjectedDependency iDep,
- Iterable<
DependencyConfig> allDeps
Implementation
Set<DependencyConfig> lookupPossibleDeps(
InjectedDependency iDep, Iterable<DependencyConfig> allDeps) {
return allDeps
.where((d) => d.type == iDep.type && d.instanceName == iDep.instanceName)
.toSet();
}