scopedDependencies method
Returns list of connectors for this module for eventual dependent instance
Implementation
List<Connector> scopedDependencies() {
return dependencies.map((element) {
if (element.scope != BaseScopes.weak) {
return element;
} else {
return element.copyWithScope(id);
}
}).toList();
}