File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Simple and powerful HTTP client for Flutter and Dart application.
9
9
import 'dart:io';
10
10
11
11
import 'package:http/http.dart' as http;
12
- import 'package:http/retry.dart' as httpRetry ;
12
+ import 'package:http/retry.dart' as http_retry ;
13
13
import 'package:http_client_hoc081098/http_client_hoc081098.dart';
14
14
15
15
import 'user.dart';
@@ -24,7 +24,7 @@ void main() async {
24
24
),
25
25
);
26
26
27
- final innerClient = httpRetry .RetryClient(
27
+ final innerClient = http_retry .RetryClient(
28
28
http.Client(),
29
29
retries: 3,
30
30
when: (response) {
Original file line number Diff line number Diff line change 1
1
import 'dart:io' ;
2
2
3
3
import 'package:http/http.dart' as http;
4
- import 'package:http/retry.dart' as httpRetry ;
4
+ import 'package:http/retry.dart' as http_retry ;
5
5
import 'package:http_client_hoc081098/http_client_hoc081098.dart' ;
6
6
7
7
import 'user.dart' ;
@@ -16,7 +16,7 @@ void main() async {
16
16
),
17
17
);
18
18
19
- final innerClient = httpRetry .RetryClient (
19
+ final innerClient = http_retry .RetryClient (
20
20
http.Client (),
21
21
retries: 3 ,
22
22
when : (response) {
You can’t perform that action at this time.
0 commit comments