AttributeSelector.withOperator constructor

AttributeSelector.withOperator(
  1. QualifiedName name,
  2. AttributeOperator? op,
  3. String? value,
  4. FileSpan span, {
  5. 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);