isCancel property

bool isCancel

Indicates if the response has been cancelled.

Implementation

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

Sets the cancellation status of the response.

Implementation

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