getDownloadInfoStream method

Stream<DownloadProgress> getDownloadInfoStream(
  1. String url
)

Returns a stream that emits detailed download progress information for a video. The stream emits DownloadProgress objects containing progress and bytes information.

Implementation

Stream<DownloadProgress> getDownloadInfoStream(String url) {
  throw UnimplementedError(
    'getDownloadInfoStream() has not been implemented.',
  );
}