stop method

void stop()

Stop watching the referenced cells.

The watch function is not called again after this method is called.

Implementation

void stop() {
  _observer.stop();
  _CellWatchTable.remove(key);
}