loadAll method

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

Loads all the fileNames provided to the cache.

Also returns a list of Futures for those files.

Implementation

Future<List<Uri>> loadAll(List<String> fileNames) async {
  return Future.wait(fileNames.map(load));
}