or method

TagQuery or(
  1. NodeQuery q2
)

Require that either this or q2 matches.

Implementation

TagQuery or(NodeQuery q2) => TagQuery().where((e) => matches(e) || q2.matches(e));