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 @@ -49,9 +49,9 @@ class BrowserClient extends BaseClient {
4949 /// Sends an HTTP request and asynchronously returns the response.
5050 @override
5151 Future <StreamedResponse > send (
52- BaseRequest request,
52+ BaseRequest request, {
5353 Progress ? onSendProgress,
54- ) async {
54+ } ) async {
5555 if (_isClosed) {
5656 throw ClientException (
5757 'HTTP request failed. Client is already closed.' , request.url);
Original file line number Diff line number Diff line change @@ -17,19 +17,19 @@ import '../utils.dart';
1717class TestClient extends http.BaseClient {
1818 @override
1919 Future <http.StreamedResponse > send (
20- http.BaseRequest request,
20+ http.BaseRequest request, {
2121 http.Progress ? onSendProgress,
22- ) {
22+ } ) {
2323 throw UnimplementedError ();
2424 }
2525}
2626
2727class TestClient2 extends http.BaseClient {
2828 @override
2929 Future <http.StreamedResponse > send (
30- http.BaseRequest request,
30+ http.BaseRequest request, {
3131 http.Progress ? onSendProgress,
32- ) {
32+ } ) {
3333 throw UnimplementedError ();
3434 }
3535}
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