cancel property

bool? get cancel

If true, the request is cancelled. This prevents the request from being sent. This can be used as a response to the onBeforeRequest, onBeforeSendHeaders, onHeadersReceived and onAuthRequired events.

Implementation

bool? get cancel => _wrapped.cancel;
set cancel (bool? v)

Implementation

set cancel(bool? v) {
  _wrapped.cancel = v;
}