cancel method

void cancel()

Implementation

void cancel() {
  if (!_isCancelled) {
    _client.close();
    _isCancelled = true;
  }
}