test flutter web chunked upload issue

This commit is contained in:
Damodar Lohani
2022-11-25 11:29:47 +05:45
committed by GitHub
parent f8480fdeec
commit 77fbe4176f
+1 -1
View File
@@ -156,7 +156,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
while (offset < size) {
var chunk;
final end = min(offset + CHUNK_SIZE-1, size-1);
final end = min(offset + CHUNK_SIZE, size);
chunk = file.bytes!.getRange(offset, end).toList();
params[paramName] =
http.MultipartFile.fromBytes(paramName, chunk, filename: file.filename);