load method

Future<List<Image>> load (List<String> urls)

Loads a list of images given their urls.

Implementation

Future<List<ui.Image>> load(List<String> urls) {
  return Future.wait(urls.map(loadImage));
}