download library
Cross-Platform file downloader for Dart and Flutter projects.
Functions
-
download(
Stream< int> stream, String filename) → Future<void> -
Downloads a file from a
streaminto the destinationfilename. -
downloadData(
Uint8List data, String filename) → Future< void> -
Downloads a file from
datainto the destinationfilename. -
downloadUrl(
String url, [String? filename]) → Future< void> -
Downloads a file from a
urlinto the destinationfilename.