isCancel property

bool get isCancel

Indicates if the response has been cancelled.

Implementation

bool get isCancel => _cancel ?? false;
set isCancel (bool value)

Sets the cancellation status of the response.

Implementation

set isCancel(bool value) => _cancel = value;