dependenciesWhereTypeT method

Iterable<Dependency<Object>> dependenciesWhereTypeT(
  1. Type type
)

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));
}