where method

TagQuery where(
  1. bool predicate(
    1. TagNode
    )
)

Implementation

TagQuery where(bool Function(TagNode) predicate) {
	conditions.add(predicate);
	return this;
}