onCancel abstract method

void onCancel(
  1. Exception cancelException, [
  2. StackTrace? stackTrace
])

Called when the attached token is cancelled.

It's not necessary to detach from the token in this method, as cancellation tokens detach from all cancellables when cancelled.

Implementation

void onCancel(Exception cancelException, [StackTrace? stackTrace]);