Hello guys! :appwritepeepo:
I would like to track the current status of the file I just downloaded, but I don't know how. I download the file with getFileDownload, but I don't get any feedback about the current status of the file. Is there a way to track the download, for example like this: downloadTask.snapshotEvents.listen((taskSnapshot) async { print(taskSnapshot.state); })
TL;DR
Developers want to track file download status in Flutter using getFileDownload, but need a way to monitor the progress. One possible solution is to use `downloadTask.snapshotEvents.listen((taskSnapshot) async { print(taskSnapshot.state); })` for tracking the download status.