Skip to content

Instantly share code, notes, and snippets.

@shekarsiri
Forked from slightfoot/download.dart
Created July 27, 2018 13:58
Show Gist options
  • Save shekarsiri/0d52647944571e9492bed7f5fd564909 to your computer and use it in GitHub Desktop.
Save shekarsiri/0d52647944571e9492bed7f5fd564909 to your computer and use it in GitHub Desktop.
Download file in Dart/Flutter
static var httpClient = new HttpClient();
Future<File> _downloadFile(String url, String filename) async {
var request = await httpClient.getUrl(Uri.parse(url));
var response = await request.close();
var bytes = await consolidateHttpClientResponseBytes(response);
String dir = (await getApplicationDocumentsDirectory()).path;
File file = new File('$dir/$filename');
await file.writeAsBytes(bytes);
return file;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment