| Index: pkg/http/lib/src/base_client.dart
|
| diff --git a/pkg/http/lib/src/base_client.dart b/pkg/http/lib/src/base_client.dart
|
| index 0b9c52ddbfe839bf750b44e72fdc1d6f71eeabf3..1662f003719e6aaae0bc44d15d06f0ba32c911e9 100644
|
| --- a/pkg/http/lib/src/base_client.dart
|
| +++ b/pkg/http/lib/src/base_client.dart
|
| @@ -9,6 +9,7 @@ import 'dart:scalarlist';
|
| import 'dart:uri';
|
|
|
| import 'base_request.dart';
|
| +import 'client.dart';
|
| import 'request.dart';
|
| import 'response.dart';
|
| import 'streamed_response.dart';
|
| @@ -17,7 +18,7 @@ import 'utils.dart';
|
| /// The abstract base class for an HTTP client. This is a mixin-style class;
|
| /// subclasses only need to implement [send] and maybe [close], and then they
|
| /// get various convenience methods for free.
|
| -abstract class BaseClient {
|
| +abstract class BaseClient implements Client {
|
| /// Sends an HTTP HEAD request with the given headers to the given URL, which
|
| /// can be a [Uri] or a [String].
|
| ///
|
|
|