File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,13 @@ library {{ language.params.packageName }};
2
2
3
3
import 'dart:async';
4
4
import 'dart:typed_data';
5
+
5
6
import 'src/enums.dart';
6
- import 'src/client.dart';
7
7
import 'src/service.dart';
8
8
import 'src/input_file.dart';
9
9
import 'src/upload_progress.dart';
10
10
import 'models.dart' as models;
11
-
12
11
export 'src/response.dart';
13
- export 'src/client.dart';
14
12
export 'src/exception.dart';
15
13
export 'src/input_file.dart';
16
14
export 'src/upload_progress.dart';
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
119
119
}
120
120
121
121
while (offset < size) {
122
- var chunk;
122
+ List< int > chunk;
123
123
final end = min(offset + CHUNK_SIZE, size);
124
124
chunk = file.bytes!.getRange(offset, end).toList();
125
125
params[paramName] =
You can’t perform that action at this time.
0 commit comments