Loads all the images of this list.
Future<List<bool>> loadAll() { var list = map((e) => e.load()) .map((e) => e is Future<bool> ? e : Future.value(e)) .toList(); return Future.wait(list); }