AttributeSelector.withOperator constructor
AttributeSelector.withOperator(
- QualifiedName name,
- AttributeOperator? op,
- String? value,
- FileSpan span, {
- String? modifier,
Creates an attribute selector that matches an element with a property
named name
, whose value matches value
based on the semantics of op
.
Implementation
AttributeSelector.withOperator(this.name, this.op, this.value, FileSpan span,
{this.modifier})
: super(span);