anyOf method

Future<T> anyOf()

Implementation

Future<T> anyOf() {
  List<Future<T>> list = this.toList();
  return Future.any(list);
}