dependenciesWhereTypeT method
Returns all dependencies witin this DIRegistry instance of type type.
Unlike dependenciesWhereType, this will not include subtypes of type.
Implementation
@pragma('vm:prefer-inline')
Iterable<Dependency> dependenciesWhereTypeT(Type type) {
return dependenciesWhereTypeK(TypeEntity(type));
}