unwatch method

  1. @protected
void unwatch(
  1. Valuable valuable
)
inherited

Remove listener on the valuable, that may change scope, or that about to be disposed Internal purpose

Implementation

@protected
void unwatch(Valuable valuable) {
  if (_watched.containsKey(valuable)) {
    _removeValuableListener(valuable);
    _watched.remove(valuable);
  }
}