onUploadDownloadProgressChanged property

Stream get onUploadDownloadProgressChanged

A stream that emits events when there is a change in upload or download progress of a media file.

This stream provides updates on the progress of media file uploads or downloads. Each event contains information about the current progress, including the percentage completed. This can be used to display progress indicators in your UI.

Usage example:

Mirrorfly.onUploadDownloadProgressChanged.listen((progressUpdate) {
  // Update progress indicator
  print("Upload/Download progress: $progressUpdate");
});

Implementation

static Stream<dynamic> get onUploadDownloadProgressChanged =>
    FlyChatFlutterPlatform.instance.onUploadDownloadProgressChanged;