Skip to content

Instantly share code, notes, and snippets.

@praveenb
Forked from slightfoot/download.dart
Created June 14, 2019 16:09
Show Gist options
  • Save praveenb/3dba81ebc583ef63aef133ae5dcf3dbb to your computer and use it in GitHub Desktop.
Save praveenb/3dba81ebc583ef63aef133ae5dcf3dbb 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