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