downloadFileBytes method

Future<Uint8List> downloadFileBytes(
  1. String uuid, {
  2. int maxConcurrentChunks = kDefaultDownloadConcurrency,
  3. dynamic onProgress(
    1. int,
    2. int
    )?,
})

Implementation

Future<Uint8List> downloadFileBytes(String uuid,
        {int maxConcurrentChunks = kDefaultDownloadConcurrency,
        Function(int, int)? onProgress}) =>
    downloader.downloadFileBytes(uuid,
        maxConcurrentChunks: maxConcurrentChunks, onProgress: onProgress);