0 purchases
dl
Dart DL #
Simple library to download files easily.
Links #
GitHub
Pub.dev
Documentation
Features #
Uses native dart:io to get data.
Ability to parse different kind of files.
Usage #
import 'dart:io';
import 'import:dl/dl.dart';
Future<void> main() async {
const downloader = Downloader(provider: RawDLProvider());
final res = await downloader.downloadToFile(
Uri.parse('https://jaspervdj.be/lorem-markdownum/markdown.txt'),
File('lipsum.md'),
overwriteFile: true,
);
await res.asFuture();
}
copied to clipboard
Checkout /example folder for examples.
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.