LogicalQuery constructor

LogicalQuery(
  1. RQLQuery a,
  2. _LogicalOperatorType type,
  3. RQLQuery b, {
  4. List<RQLQuery> additionalQueries = const <RQLQuery>[],
})

Creates a new LogicalQuery with the given type and the both comparison queries a and b.

Use additionalQueries to add more queries.

Implementation

LogicalQuery(this.a, this.type, this.b,
    {this.additionalQueries = const <RQLQuery>[]});