isCancelled property

bool isCancelled

Cancelled

Implementation

bool get isCancelled => _cancelled;
  1. @internal
void isCancelled=(bool val)

Implementation

@internal
set isCancelled(final bool val) {
  _request.isCancelled = val;
  _cancelled = val;
}