File tree 2 files changed +12
-3
lines changed
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,20 @@ import '../utils.dart';
17
17
18
18
class TestClient extends http.BaseClient {
19
19
@override
20
- Future <http.StreamedResponse > send (http.BaseRequest request) {
20
+ Future <http.StreamedResponse > send (
21
+ http.BaseRequest request,
22
+ http.Progress ? onSendProgress,
23
+ ) {
21
24
throw UnimplementedError ();
22
25
}
23
26
}
24
27
25
28
class TestClient2 extends http.BaseClient {
26
29
@override
27
- Future <http.StreamedResponse > send (http.BaseRequest request) {
30
+ Future <http.StreamedResponse > send (
31
+ http.BaseRequest request,
32
+ http.Progress ? onSendProgress,
33
+ ) {
28
34
throw UnimplementedError ();
29
35
}
30
36
}
Original file line number Diff line number Diff line change @@ -12,7 +12,10 @@ import '../utils.dart';
12
12
13
13
class TestClient extends http.BaseClient {
14
14
@override
15
- Future <http.StreamedResponse > send (http.BaseRequest request) {
15
+ Future <http.StreamedResponse > send (
16
+ http.BaseRequest request,
17
+ http.Progress ? onSendProgress,
18
+ ) {
16
19
throw UnimplementedError ();
17
20
}
18
21
}
You can’t perform that action at this time.
0 commit comments