getDependencyT method
Returns any dependency with the exact type
under the specified
groupEntity
. Unlike getDependency, this will not include subtypes.
Implementation
@protected
@pragma('vm:prefer-inline')
Option<Dependency> getDependencyT(
Type type, {
Entity groupEntity = const DefaultEntity(),
}) {
return getDependencyK(TypeEntity(type), groupEntity: groupEntity);
}