cancellation_token_http 2.1.0 cancellation_token_http: ^2.1.0 copied to clipboard
A fork of Dart's HTTP package with request cancellation using cancellation_token.
Use this package as a library
Depend on it
Run this command:
With Dart:
$ dart pub add cancellation_token_http
With Flutter:
$ flutter pub add cancellation_token_http
This will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get
):
dependencies:
cancellation_token_http: ^2.1.0
Alternatively, your editor might support dart pub get
or flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:cancellation_token_http/browser_client.dart';
import 'package:cancellation_token_http/http.dart';
import 'package:cancellation_token_http/io_client.dart';
import 'package:cancellation_token_http/retry.dart';
import 'package:cancellation_token_http/testing.dart';