File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ linter:
23
23
# comment_references
24
24
- control_flow_in_finally
25
25
- curly_braces_in_flow_control_structures
26
- # directives_ordering
26
+ - directives_ordering
27
27
- empty_catches
28
28
- empty_constructor_bodies
29
29
- empty_statements
Original file line number Diff line number Diff line change @@ -8,12 +8,11 @@ import 'dart:convert';
8
8
import 'package:http_parser/http_parser.dart' ;
9
9
10
10
import 'byte_stream.dart' ;
11
- import 'utils.dart' ;
12
-
13
11
// ignore: uri_does_not_exist
14
12
import 'multipart_file_stub.dart'
15
13
// ignore: uri_does_not_exist
16
14
if (dart.library.io) 'multipart_file_io.dart' ;
15
+ import 'utils.dart' ;
17
16
18
17
/// A file to be uploaded as part of a [MultipartRequest] . This doesn't need to
19
18
/// correspond to a physical file.
Original file line number Diff line number Diff line change 4
4
5
5
import 'dart:async' ;
6
6
7
- import 'byte_stream.dart' ;
8
7
import 'base_request.dart' ;
8
+ import 'byte_stream.dart' ;
9
9
10
10
/// An HTTP request where the request body is sent asynchronously after the
11
11
/// connection has been established and the headers have been sent.
Original file line number Diff line number Diff line change 4
4
5
5
import 'dart:async' ;
6
6
7
- import 'byte_stream.dart' ;
8
- import 'base_response.dart' ;
9
7
import 'base_request.dart' ;
8
+ import 'base_response.dart' ;
9
+ import 'byte_stream.dart' ;
10
10
import 'utils.dart' ;
11
11
12
12
/// An HTTP response where the response body is received asynchronously after
You can’t perform that action at this time.
0 commit comments