getDownloadProgressStream method
Returns a stream that emits download progress updates for a video. The stream emits values between 0.0 and 1.0.
Implementation
@override
Stream<double> getDownloadProgressStream(String url) {
return _getOrCreateProgressController(url).stream;
}