Awaits all futures and then filters for Err elements.
@pragma('vm:prefer-inline') Future<Iterable<Err<T>>> whereErr() => Future.wait(this).then((e) => e.whereErr());