getObservable method
Implementation
Observable? getObservable(Binding binding, {Observable? requestor})
{
if (binding.scope == null) {
return System.app?.scopeManager.scoped(this, binding.key);
} else {
return System.app?.scopeManager.named(requestor, binding.scope, binding.key);
}
}