stopWatching method

Future<EmptyResponse> stopWatching()

Stop watching the channel.

Implementation

Future<EmptyResponse> stopWatching() async {
  _checkInitialized();
  return _client.stopChannelWatching(id!, type);
}