nameIs method

TagQuery nameIs(
  1. String name
)

Require that matched nodes have the name name.

Implementation

TagQuery nameIs(String name) => where((n) => n.name == name);