File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ class BrowserClient extends BaseClient {
5252 /// Sends an HTTP request and asynchronously returns the response.
5353 @override
5454 Future <StreamedResponse > send (
55- BaseRequest request,
55+ BaseRequest request, {
5656 Progress ? onSendProgress,
57- ) async {
57+ } ) async {
5858 if (_isClosed) {
5959 throw ClientException (
6060 'HTTP request failed. Client is already closed.' , request.url);
Original file line number Diff line number Diff line change @@ -18,19 +18,19 @@ import '../utils.dart';
1818class TestClient extends http.BaseClient {
1919 @override
2020 Future <http.StreamedResponse > send (
21- http.BaseRequest request,
21+ http.BaseRequest request, {
2222 http.Progress ? onSendProgress,
23- ) {
23+ } ) {
2424 throw UnimplementedError ();
2525 }
2626}
2727
2828class TestClient2 extends http.BaseClient {
2929 @override
3030 Future <http.StreamedResponse > send (
31- http.BaseRequest request,
31+ http.BaseRequest request, {
3232 http.Progress ? onSendProgress,
33- ) {
33+ } ) {
3434 throw UnimplementedError ();
3535 }
3636}
Original file line number Diff line number Diff line change @@ -13,9 +13,9 @@ import '../utils.dart';
1313class TestClient extends http.BaseClient {
1414 @override
1515 Future <http.StreamedResponse > send (
16- http.BaseRequest request,
16+ http.BaseRequest request, {
1717 http.Progress ? onSendProgress,
18- ) {
18+ } ) {
1919 throw UnimplementedError ();
2020 }
2121}
You can’t perform that action at this time.
0 commit comments