cancel method

void cancel()

Implementation

void cancel() {
  if (_cancelled) return;
  _client.unsubscribe(_channel, this);
  _cancelled = true;
}