hasNoChildWhere method

NodeQuery hasNoChildWhere(
  1. dynamic builder(
    1. NodeQuery
    )
)

Match only elements with no children matching the query produced by builder.

Implementation

NodeQuery hasNoChildWhere(Function(NodeQuery) builder) {
	return where((n) => buildQuery(builder).findOne(n) == null);
}