unionAll method

Union<T> unionAll(
  1. QueryBase<T> other
)

Implementation

Union<T> unionAll(QueryBase<T> other) {
  return Union(this, other, all: true);
}