I've looked everywhere and saw that it can be done with flutter i.e.
task.snapshotEvents.listen((TaskSnapshot event) {
var progress =
(event.bytesTransferred.toDouble() / event.totalBytes.toDouble()) *
100;
print('progress $progress');
});
but couldn't find anything with flutterflow
Any ideas?