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 @@ -16,14 +16,20 @@ import '../utils.dart';
16
16
17
17
class TestClient extends http.BaseClient {
18
18
@override
19
- Future <http.StreamedResponse > send (http.BaseRequest request) {
19
+ Future <http.StreamedResponse > send (
20
+ http.BaseRequest request,
21
+ http.Progress ? onSendProgress,
22
+ ) {
20
23
throw UnimplementedError ();
21
24
}
22
25
}
23
26
24
27
class TestClient2 extends http.BaseClient {
25
28
@override
26
- Future <http.StreamedResponse > send (http.BaseRequest request) {
29
+ Future <http.StreamedResponse > send (
30
+ http.BaseRequest request,
31
+ http.Progress ? onSendProgress,
32
+ ) {
27
33
throw UnimplementedError ();
28
34
}
29
35
}
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