description property
String
get
description
An informative text about this scope, containing the debugLabel and the types being injected at this level.
Implementation
String get description {
final s = value as InjectorScopeImpl;
final types = s._thisScopeInjectableTypes;
final pfx = 'InjectorScope#${s.debugLabel}\n -';
return pfx + types.join('\n -');
}