internet_file
A internet file getter (also optional downloader) that works in all platforms
1.3.0
83K downloads/mo
#1201 most downloaded on pub.dev
ScerIO/packages.dart
What this package is like to depend on
Last release 10 months ago
14 Oct 2025
Release timing varies
gaps range from 3 months to 3.2 years
Nearly every release is documented
notes for 6 of 6 stable releases
Nothing withdrawn
no release was ever pulled
5 years old
6 releases · first in 2021
1 release in the last 12 months
see the full history below
Release timeline
6 releases · Nov 2021 to Oct 2025
2022
2023
2024
2025
2026
Releases
latest 6-
1.3.014 Oct 2025 -
1.2.025 Jul 2022Release notes
Open source →- Fixed download files without content length! Now any files can be downloaded c:
- Deprecated api
process(double percentage)atInternetFile.get - Added new api
progress(int receivedLength, int contentLength)atInternetFile.getUsage example:
- process: (percentage) { - print('downloadPercentage: $percentage'); - }, +progress: (receivedLength, contentLength) { + final percentage = receivedLength / contentLength * 100; + print( + 'download progress: $receivedLength of $contentLength bytes ( $percentage% )'); +}, -
1.1.018 Jul 2022Release notes
Open source →- Added strong typed helper for
InternetFileStorageIO
InternetFile.get( - storageAdditional: { - 'filename': 'ui_icons.ttf', - 'location': '', - }, + storageAdditional: storageIO.additional( + filename: 'ui_icons.ttf', + location: '', + ), )- Added
forceproperty forInternetFileStorageIO.get(ignore saved file, download) - Added
debugproperty forInternetFileStorageIO.get(prints percentage) - Added
methodproperty forInternetFileStorageIO.get(http method)
- Added strong typed helper for
-
1.0.008 Nov 2021 -
1.0.0+108 Nov 2021 -
1.0.0+212 Feb 2022