abortRequest method

  1. @override
void abortRequest()
inherited

Abort the request using the underlying HTTP API.

This logic is platform-specific and should be implemented by the subclass.

Implementation

@override
void abortRequest() {
  _registerHandlers();
  _canceled.complete();
}