loadAll method

Future<List<Uri>> loadAll(
  1. List<String> files
)

Pre-fetch an audio and store it in the cache.

Alias of audioCache.loadAsFile();. Pre-fetch a list of audios and store them in the cache.

Alias of audioCache.loadAll();.

Implementation

//Future<File> loadAsFile(String file) => audioCache.loadAsFile(file);

/// Pre-fetch a list of audios and store them in the cache.
///
/// Alias of `audioCache.loadAll();`.
Future<List<Uri>> loadAll(List<String> files) => audioCache.loadAll(files);