combineResultAsyncList<T, E> function
Implementation
ResultAsync<List<T>, E> combineResultAsyncList<T, E>(
Iterable<ResultAsync<T, E>> asyncResultList) =>
ResultAsync.fromSafeFuture(Future.wait(asyncResultList))
.andThen((list) => ResultAsync(combineResultList(list)));