copyUrlToLocalStorageWithProgress method

  1. @override
Stream<int> copyUrlToLocalStorageWithProgress(
  1. String url,
  2. String targetName
)
override

Downloads the file at url to targetName, emitting download progress as integers from 0 to 100.

Implementation

@override
Stream<int> copyUrlToLocalStorageWithProgress(
        String url, String targetName) =>
    Stream<int>.error(_unsupportedError('copyUrlToLocalStorageWithProgress'));