dispose method

void dispose()

Stop calling all watch functions registered with watch

Implementation

void dispose() {
  for (final watch in _watchers) {
    watch.stop();
  }
}