register method
Implementation
register(Observable observable)
{
if ((S.isNullOrEmpty(observable.key)) || (observable.scope == null)) return null;
// Notify
_notifyDescendants(observable.scope!, observable);
// Unresolved Named Scope
if (unresolved != null) _notifyUnresolved(observable.scope!.id);
}