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