Skip to content

Commit 40485e9

Browse files
committed
fix type
1 parent 1cf2930 commit 40485e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

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

129129
while (offset < size) {
130-
var chunk;
130+
List<int> chunk = [];
131131
final end = min(offset + CHUNK_SIZE, size);
132132
chunk = file.bytes!.getRange(offset, end).toList();
133133
params[paramName] =

0 commit comments

Comments
 (0)