computeAllAsync method
Future<List<V> >
computeAllAsync({
- bool throwError = true,
- Future<
V> onError(- Object error,
- StackTrace stackTrace
- V? onErrorValue,
Asynchronously resolves all computations and returns their results in iteration order.
Semantics are identical to computeAll, but always returns a Future.
Implementation
Future<List<V>> computeAllAsync({
bool throwError = true,
Future<V> Function(Object error, StackTrace stackTrace)? onError,
V? onErrorValue,
}) =>
map((e) => e.resolveAsync(
throwError: throwError,
onError: onError,
onErrorValue: onErrorValue)).resolveAll();