We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ed7d89 commit baf1baeCopy full SHA for baf1bae
templates/flutter/lib/src/client_io.dart.twig
@@ -274,7 +274,7 @@ class ClientIO extends ClientBase with ClientMixin {
274
}
275
276
while (offset < size) {
277
- var chunk;
+ List<int> chunk = [];
278
if (file.bytes != null) {
279
final end = min(offset + CHUNK_SIZE-1, size-1);
280
chunk = file.bytes!.getRange(offset, end).toList();
0 commit comments