whereErr method

Future<Iterable<Err<T>>> whereErr()

Implementation

Future<Iterable<Err<T>>> whereErr() {
  return Future.wait(this).then((e) => e.whereErr());
}