chain method

Future<Iterable<Error>> chain()

An iterator of the chain of source errors. Starting at the this.

Implementation

Future<Iterable<Error>> chain() {
  return then((e) => e.chain());
}