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 }};
22
33import 'dart:async';
44import 'dart:typed_data';
5+
56import 'src/enums.dart';
6- import 'src/client.dart';
77import 'src/service.dart';
88import 'src/input_file.dart';
99import 'src/upload_progress.dart';
1010import 'models.dart' as models;
11-
1211export 'src/response.dart';
13- export 'src/client.dart';
1412export 'src/exception.dart';
1513export 'src/input_file.dart';
1614export 'src/upload_progress.dart';
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
119119 }
120120
121121 while (offset < size) {
122- var chunk;
122+ List< int > chunk;
123123 final end = min(offset + CHUNK_SIZE, size);
124124 chunk = file.bytes!.getRange(offset, end).toList();
125125 params[paramName] =
You can’t perform that action at this time.
0 commit comments