evaluateSeq method
Run the computations in sequence, only returning the results
Implementation
FutureOr<Either<L, IList<dynamic>>> evaluateSeq(
Iterable<StateReaderTaskEither<S, C, L, dynamic>> arr,
) =>
sequence(arr).flatMap(E.map((arr) => arr.map((t) => t.first).toIList()));