Skip to content

Commit

Permalink
Merge pull request #613 from appwrite/feat-improve-pub-score
Browse files Browse the repository at this point in the history
  • Loading branch information
lohanidamodar authored Feb 16, 2023
2 parents 650e8a8 + 273c8a8 commit cb1c265
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/dart/lib/package.dart.twig
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ library {{ language.params.packageName }};

import 'dart:async';
import 'dart:typed_data';

import 'src/enums.dart';
import 'src/client.dart';
import 'src/service.dart';
import 'src/input_file.dart';
import 'src/upload_progress.dart';
Expand Down
2 changes: 1 addition & 1 deletion templates/dart/lib/src/client_browser.dart.twig
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class ClientBrowser extends ClientBase with ClientMixin {
}

while (offset < size) {
var chunk;
List<int> chunk;
final end = min(offset + CHUNK_SIZE, size);
chunk = file.bytes!.getRange(offset, end).toList();
params[paramName] =
Expand Down

0 comments on commit cb1c265

Please sign in to comment.