cancel method

void cancel()

Remove this subscription. Idempotent.

Implementation

void cancel() {
  if (_cancelled) return;
  _cancelled = true;
  _cancel();
}