|
1 | 1 | A composable, Future-based library for making HTTP requests.
|
2 | 2 |
|
3 |
| -[](https://pub.dartlang.org/packages/http) |
| 3 | +[](https://pub.dev/packages/http) |
4 | 4 | [](https://travis-ci.org/dart-lang/http)
|
5 | 5 |
|
6 | 6 | This package contains a set of high-level functions and classes that make it
|
@@ -42,17 +42,17 @@ You can also exert more fine-grained control over your requests and responses by
|
42 | 42 | creating [Request][] or [StreamedRequest][] objects yourself and passing them to
|
43 | 43 | [Client.send][].
|
44 | 44 |
|
45 |
| -[Request]: https://pub.dartlang.org/documentation/http/latest/http/Request-class.html |
46 |
| -[StreamedRequest]: https://pub.dartlang.org/documentation/http/latest/http/StreamedRequest-class.html |
47 |
| -[Client.send]: https://pub.dartlang.org/documentation/http/latest/http/Client/send.html |
| 45 | +[Request]: https://pub.dev/documentation/http/latest/http/Request-class.html |
| 46 | +[StreamedRequest]: https://pub.dev/documentation/http/latest/http/StreamedRequest-class.html |
| 47 | +[Client.send]: https://pub.dev/documentation/http/latest/http/Client/send.html |
48 | 48 |
|
49 | 49 | This package is designed to be composable. This makes it easy for external
|
50 | 50 | libraries to work with one another to add behavior to it. Libraries wishing to
|
51 | 51 | add behavior should create a subclass of [BaseClient][] that wraps another
|
52 | 52 | [Client][] and adds the desired behavior:
|
53 | 53 |
|
54 |
| -[BaseClient]: https://pub.dartlang.org/documentation/http/latest/http/BaseClient-class.html |
55 |
| -[Client]: https://pub.dartlang.org/documentation/http/latest/http/Client-class.html |
| 54 | +[BaseClient]: https://pub.dev/documentation/http/latest/http/BaseClient-class.html |
| 55 | +[Client]: https://pub.dev/documentation/http/latest/http/Client-class.html |
56 | 56 |
|
57 | 57 | ```dart
|
58 | 58 | class UserAgentClient extends http.BaseClient {
|
|
0 commit comments