Skip to content

Instantly share code, notes, and snippets.

@a7me63azzab
Forked from slightfoot/download.dart
Created March 14, 2019 12:33
Show Gist options
  • Save a7me63azzab/6a46ad3efe0afb16b19309094a951cd0 to your computer and use it in GitHub Desktop.
Save a7me63azzab/6a46ad3efe0afb16b19309094a951cd0 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