Skip to content

Commit 1cf2930

Browse files
committed
fix var
1 parent 59234d6 commit 1cf2930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/flutter/lib/src/client_browser.dart.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
148148
}
149149

150150
while (offset < size) {
151-
var chunk;
151+
List<int> chunk = [];
152152
final end = min(offset + CHUNK_SIZE, size);
153153
chunk = file.bytes!.getRange(offset, end).toList();
154154
params[paramName] =

0 commit comments

Comments
 (0)