Skip to content

Instantly share code, notes, and snippets.

@delcullu
Forked from slightfoot/download.dart
Created June 21, 2022 19:05
Show Gist options
  • Save delcullu/a7b3ee9ec2f33aae7cac4093d49e14cc to your computer and use it in GitHub Desktop.
Save delcullu/a7b3ee9ec2f33aae7cac4093d49e14cc 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